tricky wedding
- symbol
- GBUP
- name
- tricky wedding
- slug
- tricky-wedding
- marketCap
- 348214982964
- price
- 80.81484802
- priceChangePercent24h
- -14.76
- volume24h
- 60821756
- circulatingSupply
- 4308799577
- totalSupply
- 5137140156
- createdAt
Overview
crypto / #46
tricky wedding
#46
Request
curl example
curl -sS \ "https://example-data.com/api/v1/crypto/46" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/crypto/46" ); 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/46"
);
const crypto = (await res.json()) as Crypto; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/crypto/46"
)
crypto = res.json() Response
{
"id": 46,
"symbol": "GBUP",
"name": "tricky wedding",
"slug": "tricky-wedding",
"marketCap": 348214982964,
"price": 80.81484802,
"priceChangePercent24h": -14.76,
"volume24h": 60821756,
"circulatingSupply": 4308799577,
"totalSupply": 5137140156,
"createdAt": "2026-01-31T16:52:39.101Z"
}