Getting Started with Our API
Our REST API allows you to programmatically interact with our platform.
Authentication
To use the API, you need to generate an API key from your account settings. Include this key in the Authorization header of your requests as a Bearer token.
Example Request
Here's an example of how to fetch a list of your projects using curl:
curl -X GET 'https://api.example.com/v1/projects' \
-H 'Authorization: Bearer YOUR_API_KEY'Rate Limiting
Our API has a rate limit of 100 requests per minute per user. The response headers will include information about your current rate limit status.
Comments
0 comments
Please sign in to leave a comment.