curl -X GET "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY"
{
"uuid": "a1b2c3d4-...",
"name": "Face Blocklist",
"description": "Blocked biometric faces...",
"list_type": "blocklist",
"entry_type": "face",
"is_system": true,
"entry_count": 5,
"last_entry_added_at": "2025-06-09T12:26:54Z",
"created_at": "2025-01-01T00:00:00Z",
"updated_at": "2025-06-09T12:26:54Z"
}
Lists
Get List
GET /v3/lists// — retrieve details of a specific Didit blocklist, allowlist, or custom list including entry count and metadata.
GET
/
v3
/
lists
/
{list_uuid}
/
curl -X GET "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY"
{
"uuid": "a1b2c3d4-...",
"name": "Face Blocklist",
"description": "Blocked biometric faces...",
"list_type": "blocklist",
"entry_type": "face",
"is_system": true,
"entry_count": 5,
"last_entry_added_at": "2025-06-09T12:26:54Z",
"created_at": "2025-01-01T00:00:00Z",
"updated_at": "2025-06-09T12:26:54Z"
}
Get the details of a specific list, including entry count and last entry timestamp.
curl -X GET "https://verification.didit.me/v3/lists/{list_uuid}/" \
-H "x-api-key: YOUR_API_KEY"
{
"uuid": "a1b2c3d4-...",
"name": "Face Blocklist",
"description": "Blocked biometric faces...",
"list_type": "blocklist",
"entry_type": "face",
"is_system": true,
"entry_count": 5,
"last_entry_added_at": "2025-06-09T12:26:54Z",
"created_at": "2025-01-01T00:00:00Z",
"updated_at": "2025-06-09T12:26:54Z"
}