Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.0xarchive.io/llms.txt

Use this file to discover all available pages before exploring further.

Source OpenAPI: 0xArchive API 1.5.0; 116 paths; 90 component schemas. List all API keys belonging to the authenticated wallet. Requires a fresh SIWE challenge signed with personal_sign (EIP-191).

Route Metadata

FieldValue
MethodPOST
Path/v1/web3/keys
operationIdweb3ListKeys
TagWeb3 Authentication
FamilyWeb3 Auth
Deprecated or legacyno

Request Body

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "web3ListKeys request body",
  "type": "object",
  "required": [
    "message",
    "signature"
  ],
  "properties": {
    "message": {
      "description": "The SIWE message from the challenge endpoint",
      "type": "string"
    },
    "signature": {
      "description": "Hex-encoded signature from personal_sign (0x-prefixed)",
      "type": "string"
    }
  }
}

Response Contracts

Status 200

List of API keys

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "web3ListKeys response 200",
  "type": "object",
  "properties": {
    "keys": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "created_at": {
            "description": "Creation timestamp",
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "description": "Unique key ID",
            "type": "string",
            "format": "uuid"
          },
          "is_active": {
            "description": "Whether the key is currently active",
            "type": "boolean"
          },
          "key_prefix": {
            "description": "First characters of the key for identification",
            "type": "string",
            "example": "0xa_live_abc1"
          },
          "last_used_at": {
            "description": "Last usage timestamp",
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "name": {
            "description": "Key name",
            "type": "string"
          }
        }
      }
    },
    "wallet_address": {
      "description": "The wallet address",
      "type": "string"
    }
  }
}

Status 401

Authentication required

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "web3ListKeys response 401",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
OpenAPI example
{
  "code": 401,
  "error": "Missing or invalid API key. Provide X-API-Key header."
}

Status 429

Rate limit exceeded

application/json

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "web3ListKeys response 429",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    }
  }
}
OpenAPI example
{
  "code": 429,
  "error": "Rate limit exceeded"
}
Last modified on May 18, 2026