Fecusio API
Welcome to the Fecusio API documentation. This API allows you to interact with the Fecusio platform programmatically.
Authentication
Section titled “Authentication”To authenticate, include your API key in the request headers:
Authorization: Bearer YOUR_API_KEY
Obtaining API Key
Section titled “Obtaining API Key”To obtain an API key for a workspace, navigate to Integration page from workspace Settings page. Under “API tokens” tab click on “Create token”. Enter token name so you know later what token it refers to, as you will only be able to see the token once upon creation. Copy and store the token safely.
Base URL
Section titled “Base URL”All API requests should be made to:
https://api.fecusio.com/v1
Response Format
Section titled “Response Format”All responses are returned in JSON format and follow a consistent structure:
{ "data": { /* Response data */ }, "meta": { /* Pagination metadata if applicable */ }}
Error Handling
Section titled “Error Handling”When an error occurs, the API returns an appropriate HTTP status code along with a JSON response containing error details:
{ "message": "Human-readable error message"}
Rate Limiting
Section titled “Rate Limiting”API requests are subject to rate limiting of 100 requests per minute per API key.
Explore the API
Section titled “Explore the API”Use the sidebar navigation to explore the available endpoints and resources.