Ir al contenido
GET /v1/coin

Project identity & technical profile

Pruébalo en vivo

10 llamadas gratis al día — sin registro, sin clave API. Pasa por el gateway de oanor.

Encabezados personalizados (opcional)
api.oanor.com/cryptoprojects-api

Funciona. Consigue una clave API y úsala en tu proyecto.

Obtener una clave API

Fragmentos de código

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

Respuesta de ejemplo

Una respuesta real de este endpoint, capturada en la última comprobación de estado.

{
    "data": {
        "id": "btc-bitcoin",
        "name": "Bitcoin",
        "rank": 1,
        "tags": [
            "Segwit",
            "Cryptocurrency",
            "Proof Of Work",
            "Payments",
            "Sha256",
            "Mining",
            "Lightning Network",
            "Layer 1 (L1)",
            "FTX Holdings"
        ],
        "type": "coin",
        "is_new": false,
        "source": "CoinPaprika",
        "symbol": "BTC",
        "is_active": true,
        "team_size": 4,
        "proof_type": "Proof of Work",
        "started_at": "2009-01-03T00:00:00Z",
        "open_source": true,
        "org_structure": "Decentralized",
        "hash_algorithm": "SHA256",
        "hardware_wallet": true,
        "development_status": "Working product"
    },
    "meta": {
        "timestamp": "2026-06-12T01:41:34.637Z",
        "request_id": "b350fd49-4ff3-4924-91e9-ad6f6323f3d8"
    },
    "status": "ok",
    "message": "Coin profile retrieved successfully",
    "success": true
}