Μετάβαση στο περιεχόμενο
GET /v1/meta

Spec

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/cryptoprojects-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/cryptoprojects-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cryptoprojects-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cryptoprojects-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/cryptoprojects-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "coin is a CoinPaprika id (btc-bitcoin, eth-ethereum); a bare symbol (btc) or name (bitcoin) is resolved automatically. Project profile and team change slowly and are cached briefly to protect the keyless rate-limited upstream.",
        "source": "CoinPaprika public API (api.coinpaprika.com/v1, live)",
        "service": "cryptoprojects-api",
        "endpoints": {
            "GET /v1/coin": "Project identity & technical profile (coin=btc-bitcoin or coin=btc).",
            "GET /v1/meta": "This document.",
            "GET /v1/team": "The people behind the project — names and roles (coin=eth-ethereum).",
            "GET /v1/events": "The project's event calendar — conferences, launches, milestones (coin=eth-ethereum)."
        },
        "description": "The 'who built it and what's on its calendar' view of a cryptocurrency, from CoinPaprika. coin returns the project's identity and technical profile (rank, coin/token type, genesis date, development status, proof/consensus type, hashing algorithm, organisation structure, open-source flag, industry tags); team returns the people behind it (names and roles); events returns the project's event calendar (conferences, launches, listings, milestones with dates and links). Live, no key, nothing stored. The project-and-people view of a coin — team, profile and calendar, not price — distinct from the price, market and CoinGecko-profile APIs.",
        "eth_team_size": 12,
        "upstream_status": "ok"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:34.966Z",
        "request_id": "c6077ffb-8123-4bf3-aad6-44e0863e18fc"
    },
    "status": "ok",
    "message": "Meta",
    "success": true
}