common scrap
- symbol
- TLWZA
- name
- common scrap
- slug
- common-scrap
- marketCap
- 196077850230
- price
- 20.43453143
- priceChangePercent24h
- -6.78
- volume24h
- 78469122
- circulatingSupply
- 9595416998
- totalSupply
- —
- createdAt
Overview
crypto / #38
common scrap
#38
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/38" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/38" ); 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/38"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/38"
)
crypto = res.json() Response
{
"id": 38,
"symbol": "TLWZA",
"name": "common scrap",
"slug": "common-scrap",
"marketCap": 196077850230,
"price": 20.43453143,
"priceChangePercent24h": -6.78,
"volume24h": 78469122,
"circulatingSupply": 9595416998,
"totalSupply": null,
"createdAt": "2025-12-13T17:11:13.479Z"
}