elliptical mainstream
- symbol
- TUZS
- name
- elliptical mainstream
- slug
- elliptical-mainstream
- marketCap
- 550149511230
- price
- 98.33633167
- priceChangePercent24h
- 12.97
- volume24h
- 20868785
- circulatingSupply
- 5594570205
- totalSupply
- —
- createdAt
Overview
crypto / #42
elliptical mainstream
#42
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/42" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/42" ); 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/42"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/42"
)
crypto = res.json() Response
{
"id": 42,
"symbol": "TUZS",
"name": "elliptical mainstream",
"slug": "elliptical-mainstream",
"marketCap": 550149511230,
"price": 98.33633167,
"priceChangePercent24h": 12.97,
"volume24h": 20868785,
"circulatingSupply": 5594570205,
"totalSupply": null,
"createdAt": "2025-01-21T21:50:15.167Z"
}