Cobalt API

Welcome to Cobalt’s API documentation! Our API provides a powerful and flexible way to integrate Cobalt’s services into your applications. Whether you’re building a CRM, finance application, or any other SaaS platform, Cobalt’s API can help you connect seamlessly with various third-party applications.

Base URL

Nullam convallis mauris at nunc consectetur, ac imperdiet leo rutrum. Maecenas cursus purus a pellentesque blandit. Pellentesque vitae lacinia libero, non mollis metus.

https://api.gocobalt.io

Authentication

Cobalt apis uses api key to authenticate requests. You may use either of test or production keys depending upon the environment that you want to use. You can find the api keys here

'x-api-key': '<Cobalt API key>'

Provide API keys as a header parameter

Provide your API key in the request headers as:

Example Request
curl --location --request POST 'https://api.gocobalt.io/api/user' \
--header 'Content-Type: application/json' \
--header 'x-api-key:  <Cobalt API Key>' \
--data-raw '{
    "Example_Keyname": ""
}'

Supported Formats

Cobalt APIs support sending request body with the application/json content-type. All replies are also encoded in application/json; charset=utf-8

HTTP response codes

NameDescriptionSample Response
200Success{"Success": true}
400Bad Request
401Unauthorised
403Rate Limit Hit
404Not Found
500Server Error

Rate Limiting

Please be aware that Cobalt enforces rate limiting to ensure fair usage and prevent abuse. The rate limit is set to 10 requests per minute for each linked account. Make sure to manage your API usage accordingly to avoid throttling of subsequent requests.