example-data.com
Menu
Browse docs and collections

Overview

crypto / #19

NEAR Protocol

symbol
NEAR
name
NEAR Protocol
slug
near-protocol
marketCap
4875500000
price
4.8755
priceChangePercent24h
-8.37
volume24h
3780606425
circulatingSupply
1000000000
totalSupply
createdAt

Component variants

Related

Referenced by

Request

curl example

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

JavaScript example

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

Python example

import requests

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

Response

{
  "id": 19,
  "symbol": "NEAR",
  "name": "NEAR Protocol",
  "slug": "near-protocol",
  "marketCap": 4875500000,
  "price": 4.8755,
  "priceChangePercent24h": -8.37,
  "volume24h": 3780606425,
  "circulatingSupply": 1000000000,
  "totalSupply": null,
  "createdAt": "2025-06-28T03:19:58.422Z"
}