Skip to content

Fecusio API

Welcome to the Fecusio API documentation. This API allows you to interact with the Fecusio platform programmatically.

To authenticate, include your API key in the request headers:

Terminal window
Authorization: Bearer YOUR_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.

All API requests should be made to:

https://api.fecusio.com/v1

All responses are returned in JSON format and follow a consistent structure:

{
"data": { /* Response data */ },
"meta": { /* Pagination metadata if applicable */ }
}

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"
}

API requests are subject to rate limiting of 100 requests per minute per API key.

Use the sidebar navigation to explore the available endpoints and resources.