limited obligation
- symbol
- KSEG
- name
- limited obligation
- slug
- limited-obligation
- marketCap
- 59795353473
- price
- 9.18161771
- priceChangePercent24h
- -6.5
- volume24h
- 14356308
- circulatingSupply
- 6512507421
- totalSupply
- —
- createdAt
Overview
crypto / #28
limited obligation
#28
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/28" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/28" ); const crypto = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/crypto.d.ts https://example-data.com/types/crypto.d.ts
import type { Crypto } from "./types/crypto";
const res = await fetch(
"https://example-data.com/api/v1/crypto/28"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/28"
)
crypto = res.json() Response
{
"id": 28,
"symbol": "KSEG",
"name": "limited obligation",
"slug": "limited-obligation",
"marketCap": 59795353473,
"price": 9.18161771,
"priceChangePercent24h": -6.5,
"volume24h": 14356308,
"circulatingSupply": 6512507421,
"totalSupply": null,
"createdAt": "2025-11-13T10:16:07.029Z"
}