Authentication
All requests to pipe0 require authentication. The following is required:
đź‘ľ Create an account
đź’ł Buy a subscription to make requests in production mode
⚠️
Warning
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.
- Login to your account
- Navigate to the settings page
- Select “API keys” in the sidebar
- Click “Create”
Making authenticated requests
To make authenticated requests send your API key as part of the
Authorization
header.
Authenticated request
curl -X POST "https://pipe0.com/api/v1/run" \
-H "Authorization: Bearer YOUR_API_TOKEN" # API_KEY in "Authorization" header
Last updated on