> ## 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 webhook endpoints JSON Schema

> List webhook endpoints JSON Schema contract. Includes route metadata, request parameters, response statuses, examples, and JSON fields for implementation.

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

Your delivery destinations, oldest first. The signing secret is never returned here: it is shown once when an endpoint is created and again when it is rotated. Authenticate with an API key or a signed-in dashboard session. Costs no credits.

## Route Metadata

| Field                | Value                    |
| -------------------- | ------------------------ |
| Method               | `GET`                    |
| Path                 | `/v1/webhooks/endpoints` |
| operationId          | `listWebhookEndpoints`   |
| Tag                  | Webhooks - Endpoints     |
| Family               | Webhooks                 |
| Deprecated or legacy | no                       |

## Response Contracts

### Status 200

Your webhook delivery endpoints

#### application/json

```json theme={"theme":"github-dark"}
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "listWebhookEndpoints response 200",
  "description": "API response containing your webhook delivery endpoints.",
  "type": "object",
  "properties": {
    "data": {
      "type": "array",
      "items": {
        "description": "A delivery destination. The signing secret is not part of this shape: it is returned once when the endpoint is created and again when it is rotated, and never on a list.",
        "type": "object",
        "required": [
          "consecutive_failures",
          "created_at",
          "description",
          "id",
          "status",
          "url"
        ],
        "properties": {
          "consecutive_failures": {
            "description": "Failed attempts since the last success. Resets to zero on a delivery that lands.",
            "type": "integer",
            "format": "int32",
            "example": 0
          },
          "created_at": {
            "description": "When the endpoint was created.",
            "type": "string",
            "format": "date-time"
          },
          "description": {
            "description": "Your own label for the endpoint.",
            "type": "string",
            "example": "Trading desk alerts"
          },
          "id": {
            "description": "Endpoint identifier.",
            "type": "string",
            "format": "uuid"
          },
          "status": {
            "description": "`active` is serving. `disabled` means you switched it off. `auto_disabled` means a long run of failed deliveries switched it off for you; bring it back with the enable route.",
            "type": "string",
            "enum": [
              "active",
              "disabled",
              "auto_disabled"
            ],
            "example": "active"
          },
          "url": {
            "description": "HTTPS destination that receives deliveries.",
            "type": "string",
            "format": "uri",
            "example": "https://example.com/hooks/0xarchive"
          }
        }
      }
    },
    "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": "listWebhookEndpoints 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": "listWebhookEndpoints 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"
}
```
