Get started with the Coolset APIs in minutes.
Before you begin, you'll need:
- A Coolset account
- An API token (available in your account settings)
- Basic knowledge of REST APIs
Log in to your Coolset account and navigate to Settings → API Tokens to generate your authentication token.
Try this simple request to verify your setup:
curl -X GET https://developers.coolset.com/api/accounts/user-config/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json"Expected Response:
{
"id": 123,
"user": {
"email": "user@example.com",
"name": "Your Name"
},
"company_id": 456,
"workspace": "Default Workspace"
}Now you're ready to use our APIs:
Supply Chain: Track orders and products
curl -X GET https://developers-scranton.coolset.com/api/orders/ \
-H "Authorization: Bearer YOUR_API_TOKEN"EUDR Compliance: Run risk assessments
curl -X POST https://developers-pulse.coolset.com/api/compliance/risk-assessments/ \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"identifier": "ORDER-12345",
"assessment_type": "eudr_order_assessment"
}'Carbon: Get emissions data
curl -X GET https://developers-scranton.coolset.com/api/emission_calculations/emissions/ \
-H "Authorization: Bearer YOUR_API_TOKEN"- Email: support@coolset.com
- Documentation: Browse the API Reference in the sidebar
- Status: status.coolset.com