---
title: "List address verifications"
method: GET
path: "/addresses/verifications"
tags: ["Address Verification"]
---

# List address verifications

`GET /addresses/verifications`

## Query parameters

- `verification_method` 'SIGNATURE' | 'SMALL_DEPOSIT' | 'MANUAL'
- `status` 'PENDING' | 'APPROVED' | 'EXPIRED' | 'CANCELLED'
- `limit` integer
- `order` 'DESC' | 'ASC'
- `order_by` 'CREATED_AT'
- `page_cursor` string
- `created_at.lt` string, date-time
- `created_at.lte` string, date-time
- `created_at.eq` string, date-time
- `created_at.gte` string, date-time
- `created_at.gt` string, date-time
- `deposit_address` string
- `network` string
- `address` string
- `updated_at.lt` string, date-time
- `updated_at.lte` string, date-time
- `updated_at.eq` string, date-time
- `updated_at.gte` string, date-time
- `updated_at.gt` string, date-time

## Response `200`

A successful response.

- PublicListVerificationsResponse
  - `next_page_cursor` string
  - `items` PublicVerification[]
    - `id` string
    - `network` string
    - `address` string
    - `verification_method` 'SIGNATURE' | 'SMALL_DEPOSIT' | 'MANUAL'
    - `status` 'PENDING' | 'APPROVED' | 'EXPIRED' | 'CANCELLED'
    - `signature_verification` PublicSignatureVerification
      - `message` string
      - `nonce` string
      - `signature` string
    - `small_deposit_verification` PublicSmallDepositVerification
      - `amount` string, decimal
      - `deposit_address` string
      - `transaction_hash` string
      - `asset` string
    - `manual_verification` PublicManualVerification — ManualVerification is populated on admin endpoints only when verification_method is MANUAL. Not returned on public endpoints.
      - `verified_by` string — verified_by is the email of the admin who submitted the proof.
      - `reason` string
    - `created_at` string, date-time
    - `updated_at` string, date-time
    - `expires_at` string, date-time — expires_at is computed server-side at creation time and is always populated.
    - `ref_id` string

---

[API](https://skmtc.net/paxos/apis/paxos-api.md) · [All operations](https://skmtc.net/paxos/apis/paxos-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/paxos/paxos-api/revisions/0687ca8c9a8d/schema)
