> ## 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.

# List watched wallet addresses JSON Schema

> List watched wallet addresses JSON Schema contract. Includes parameters, response shapes, examples, and implementation notes from the 0xArchive contract.

Source OpenAPI: 0xArchive API 1.6.1; 168 paths; 190 component schemas.

The wallets address scoped event types report on, with the number of wallets this plan allows. Authenticate with an API key or a signed-in dashboard session. Costs no credits.

## Route Metadata

| Field                | Value                         |
| -------------------- | ----------------------------- |
| Method               | `GET`                         |
| Path                 | `/v1/webhooks/addresses`      |
| operationId          | `listWebhookWatchedAddresses` |
| Tag                  | Webhooks - Watched Addresses  |
| Family               | Webhooks                      |
| Deprecated or legacy | no                            |

## Response Contracts

### Status 200

Your watched wallet addresses

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "listWebhookWatchedAddresses response 200",
  "description": "API response containing your watched wallet addresses.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "description": "A wallet on your watched list. Address scoped event types report only on these.",
        "type": "object",
        "required": [
          "address",
          "created_at",
          "id",
          "label"
        ],
        "properties": {
          "address": {
            "description": "The wallet, stored lowercase.",
            "type": "string",
            "example": "0x6b9e773128f453f5c2c60935ee2de2cbc5390a24"
          },
          "created_at": {
            "description": "When the wallet was added.",
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "description": "Watched address identifier.",
            "type": "string",
            "format": "uuid"
          },
          "label": {
            "description": "Your own label for the wallet. At most 64 characters.",
            "type": "string",
            "example": "Desk 1"
          }
        }
      }
    },
    "limit": {
      "description": "Watched wallets this plan allows.",
      "type": "integer",
      "format": "int64",
      "example": 15
    },
    "success": {
      "type": "boolean",
      "example": true
    }
  }
}
```

### Status 401

Authentication required

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "listWebhookWatchedAddresses response 401",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    },
    "error_code": {
      "description": "Machine-readable error code. Common values: `invalid_query_params` (a query parameter failed to parse or validate) and `invalid_path_params` (a path parameter failed to parse). Other endpoint-specific codes exist; treat unknown codes as generic errors of the given HTTP status.",
      "type": "string"
    },
    "request_id": {
      "description": "Unique request ID for support",
      "type": "string",
      "format": "uuid"
    }
  }
}
```

##### OpenAPI example

```json theme={"theme":"github-dark"}
{
  "code": 401,
  "error": "Missing or invalid API key. Provide X-API-Key header."
}
```

### Status 429

Rate limit exceeded

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "listWebhookWatchedAddresses response 429",
  "description": "Error response",
  "type": "object",
  "properties": {
    "code": {
      "description": "HTTP status code",
      "type": "integer"
    },
    "error": {
      "description": "Error message",
      "type": "string"
    },
    "error_code": {
      "description": "Machine-readable error code. Common values: `invalid_query_params` (a query parameter failed to parse or validate) and `invalid_path_params` (a path parameter failed to parse). Other endpoint-specific codes exist; treat unknown codes as generic errors of the given HTTP status.",
      "type": "string"
    },
    "request_id": {
      "description": "Unique request ID for support",
      "type": "string",
      "format": "uuid"
    }
  }
}
```

##### OpenAPI example

```json theme={"theme":"github-dark"}
{
  "code": 429,
  "error": "Rate limit exceeded"
}
```
