Zum Inhalt springen
GET /v1/resources

Move resource types an account holds

Live testen

10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.

Eigene Header (optional)
api.oanor.com/aptos-api

Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.

API-Key holen

Code-Snippets

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

Beispiel-Response

Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.

{
    "data": {
        "source": "Aptos",
        "address": "0xd503b95164384a5ebbccbb5c4bdc8b4a5893d9651e9953abda8e1c22fcc1181d",
        "resources": [
            "0x1::account::Account"
        ],
        "resource_count": 1
    },
    "meta": {
        "timestamp": "2026-06-09T20:24:52.422Z",
        "request_id": "5c2778d4-9dc5-476e-a9f6-4015586addec"
    },
    "status": "ok",
    "message": "Resources retrieved successfully",
    "success": true
}