Skip to main content
GET
/
folders
/
{id}
/
results
Get folder results
curl --request GET \
  --url https://api.anycheck.ai/folders/{id}/results \
  --header 'Authorization: Bearer <token>'
{
"total": 10,
"items": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"folder": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"name": "<string>"
},
"verification_types": [
"KTP & PEP Verification",
"BPKB DKI Jakarta"
],
"output_statuses": [
"KTP Verified",
"BPKB DKI Jakarta Not Verified"
],
"overall_status": "COMPLETED",
"total_files": 3,
"total_pages": 8,
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"processed_by": "<string>",
"processed_by_name": "John Doe"
}
]
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login endpoint.

Example:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Path Parameters

id
string<uuid>
required

Folder ID

Query Parameters

page_offset
integer
default:0

Number of items to skip

page_size
integer
default:10

Number of items per page

service_id
string<uuid>[]

Filter by service IDs

period_start
string<date>

Start date filter

period_end
string<date>

End date filter

Response

List of verification results grouped by result_id

total
integer

Total number of results

Example:

10

items
object[]