Overview
Overview of the Lybic Core API.
Lybic Core API are RESTful APIs that allow you to interact with the Lybic platform.
Base URL
You can access the base url in your dashboard.
Navigate to API Keys in your dashboard, and you will find the base URL for the API.
Authentication
You can get your API Key from the API Keys section in your dashboard. This key is used to authenticate your requests to the API.
Adds the following header to your requests:
X-Api-Key: YOUR_API_KEY
Or if you prefer to use the Authorization
header, you can use the following header:
Authorization: Bearer YOUR_API_KEY
Error Handling
All API responses will return a JSON object with the Content-Type: application/json
header.
If an error occurs, the response status code will be in the 4xx or 5xx range, and the response body will contain an error object with the following structure:
{
"message": "Error message describing the issue"
}
OpenAPI
You can also grab the openapi.json file to build your own client seamlessly.