Skip to main content
GET
/
v3
/
users
List Users
curl --request GET \
  --url https://verification.didit.me/v3/users/ \
  --header 'x-api-key: <api-key>'
{
  "count": 2,
  "next": null,
  "previous": null,
  "results": [
    {
      "vendor_data": "user-123",
      "status": "Approved",
      "full_name": "John Doe",
      "updated_at": "2025-06-01T12:00:00Z"
    },
    {
      "vendor_data": "user-456",
      "status": "In Review",
      "full_name": "Jane Smith",
      "updated_at": "2025-06-02T09:30:00Z"
    }
  ]
}

Authorizations

x-api-key
string
header
required

Query Parameters

limit
integer
default:50

Number of results per page.

offset
integer
default:0

Pagination offset.

status
string

Filter by status (Approved, Declined, In Review, Pending).

Response

200 - application/json

Paginated list of users.