example-data.com
Menu
Browse docs and collections

Overview

crypto / #29

oddball negotiation

symbol
PWFT
name
oddball negotiation
slug
oddball-negotiation
marketCap
617909249352
price
83.90795278
priceChangePercent24h
-14.85
volume24h
55365769
circulatingSupply
7364132110
totalSupply
8230985208
createdAt

Component variants

Related

Request

curl example

curl -sS \
  "https://example-data.com/api/v1/crypto/29" \
  -H "Accept: application/json"

JavaScript example

const res = await fetch(
  "https://example-data.com/api/v1/crypto/29"
);
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/29"
);
const crypto = (await res.json()) as Crypto;

Python example

import requests

res = requests.get(
    "https://example-data.com/api/v1/crypto/29"
)
crypto = res.json()

Response

{
  "id": 29,
  "symbol": "PWFT",
  "name": "oddball negotiation",
  "slug": "oddball-negotiation",
  "marketCap": 617909249352,
  "price": 83.90795278,
  "priceChangePercent24h": -14.85,
  "volume24h": 55365769,
  "circulatingSupply": 7364132110,
  "totalSupply": 8230985208,
  "createdAt": "2025-03-17T19:13:15.701Z"
}