cURL
Generate OAuth Token
Learn how to generate an OAuth access token to authenticate requests to the Pipedream API
POST
cURL
Documentation Index
Fetch the complete documentation index at: https://pipedream.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
If using one of the available SDKs in TypeScript, Python, or Java, the OAuth access token is automatically generated (and refreshed) for you when you initialize the client.
- Visit the API settings for your Pipedream workspace.
- Click the New OAuth Client button.
- Name your client and click Create.
- Copy the client secret. It will not be accessible again. Click Close.
- Copy the client ID from the list.
Read more in the Authentication section.
OAuth scopes
You can optionally specify ascope parameter in the request body to limit the access token to specific operations. The scope parameter accepts a space-separated list of scopes.
If no scope is specified, the token defaults to * (full access).
Example request with scopes:
View the full list of available scopes in the Authentication section.
Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Body
application/json