/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/coinprofile-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/coinprofile-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/coinprofile-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/coinprofile-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"source": "CoinGecko public coin detail API (live)",
"service": "coinprofile-api",
"endpoints": {
"GET /v1/meta": "This document.",
"GET /v1/links": "A coin's official links (id=ethereum): homepage, whitepaper, explorers, GitHub, socials.",
"GET /v1/profile": "A coin's project profile (id=ethereum): description, rank, categories, ATH/ATL, sentiment.",
"GET /v1/developer": "A coin's GitHub developer activity (id=ethereum): stars, forks, issues, commits."
},
"description": "Live project profile, developer activity and official links for any cryptocurrency from CoinGecko. Profile: description, market-cap rank, categories, genesis date, hashing algorithm, country, sentiment, all-time high/low with dates. Developer: GitHub stars, forks, watchers, total/closed issues, merged pull requests and recent commits. Links: homepage, whitepaper, block explorers, GitHub, subreddit, Twitter, Telegram, forums. Live, no key, nothing stored. Distinct from price, market-cap and OHLC APIs — this is the project profile, developer activity and links.",
"upstream_status": null
},
"meta": {
"timestamp": "2026-06-09T11:38:47.121Z",
"request_id": "cd88604d-183b-4070-82f8-39252fe4c8a8"
},
"status": "ok",
"message": "Meta",
"success": true
}