logo-darkPipe0

Authentication

Making authenticated requests

All requests to pipe0 require authentication. You need:

  • A pipe0 account
  • An active subscription, for requests in production mode

Don't store API keys in the browser. Connect your browser-based app to pipe0 by proxying requests through a secure server or serverless function that can store API keys securely.

Create an API Key

API keys can be created through the dashboard.

Log in to your account.

Navigate to the settings page.

Select "API keys" in the sidebar.

Click "Create".

Send an authenticated request

Send your API key as part of the Authorization header.

Authenticated request
curl -X POST "https://api.pipe0.com/v1/pipes/run" \
-H "Authorization: Bearer <API_KEY>" \
-H "Content-Type: application/json" 

On this page