Looking for the Pipedream Connect API? Go here.
Base URL
All API requests should be made to:Authentication
All requests to the Pipedream API must be authenticated. Read more about authentication here.Required Headers
All API requests must include:- Authorization: Bearer token (required on all endpoints)
- Content-Type:
application/json
(required for POST and PUT requests with JSON payloads)
Common Parameters
The following parameters are available on many endpoints:include
: Specify fields to include in the responseexclude
: Specify fields to exclude from the responseorg_id
: Workspace ID (required only when using User API keys to specify which workspace to operate in; not needed with OAuth tokens)
Pagination
List endpoints return paginated results with a default page size of 10 items.Parameters
limit
: Number of items per page (1-100, default: 10)after
: Cursor for next pagebefore
: Cursor for previous page
Example Response
Errors
The API uses standard HTTP response codes:- 2xx: Success
- 4xx: Client error (bad request, unauthorized, not found, etc.)
- 5xx: Server error