⚙️Rest API
Everything you need to get started with our API
Base Endpoint
https://ht-api.coinmarketman.comAuthorization: Bearer <token>How to Connect
curl --location 'https://ht-api.coinmarketman.com/api/external/segments' \
--header 'Authorization: Bearer YOUR_API_TOKEN'const res = await fetch(
'https://ht-api.coinmarketman.com/api/external/segments',
{
headers: {
Authorization: 'Bearer YOUR_API_TOKEN'
}
}
);
const data = await res.json();
console.log(data);Authentification
Authorization: Bearer eyJhbGciOiJ...Response Format
Last updated