Authentication
Parabol authenticates your API requests using API keys that you get from Parabol Labs (via [email protected]). All authentication is performed by including the API key in the x-api-key
header.
{
"x-api-key": "YOUR_API_KEY"
}
โ ๏ธ
Never share or expose your API keys in public forums, avoid sharing them internally within your organization, and always use HTTPS for API requests. Requests over plain HTTP will be rejected.
Example
Hereโs a simple example of passing in your API key with any Parabol API endpoint:
curl -X GET 'https://api.parabol.fi/notes' \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY'
โน๏ธ
Parabol provides three main API endpoints, each serving a specific purpose in interacting with the Parabol protocol. All endpoints require authentication using your API key. For more information, see the Parabol API Reference.