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 addressesapplication/json
{
"$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 requiredapplication/json
{
"$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
{
"code": 401,
"error": "Missing or invalid API key. Provide X-API-Key header."
}
Status 429
Rate limit exceededapplication/json
{
"$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
{
"code": 429,
"error": "Rate limit exceeded"
}