Stellar
- symbol
- XLM
- name
- Stellar
- slug
- stellar
- marketCap
- 3177216000
- price
- 0.113472
- priceChangePercent24h
- -8.41
- volume24h
- 1861397458
- circulatingSupply
- 28000000000
- totalSupply
- 50000000000
- createdAt
Overview
crypto / #17
Stellar
#17
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/17" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/17" ); 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/17"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/17"
)
crypto = res.json() Response
{
"id": 17,
"symbol": "XLM",
"name": "Stellar",
"slug": "stellar",
"marketCap": 3177216000,
"price": 0.113472,
"priceChangePercent24h": -8.41,
"volume24h": 1861397458,
"circulatingSupply": 28000000000,
"totalSupply": 50000000000,
"createdAt": "2025-12-25T06:06:46.535Z"
}