curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/verifications \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "Verification:019542f5-b3e7-1d02-0000-000000000001",
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"verificationStatus": "RESOLVE_ERRORS",
"errors": [
{
"resourceId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"type": "MISSING_FIELD",
"reason": "Business address line 1 is required",
"field": "customer.address.line1",
"acceptedDocumentTypes": [
"PASSPORT"
]
}
],
"createdAt": "2025-10-03T12:00:00Z",
"updatedAt": "2025-10-03T12:00:00Z"
}
],
"hasMore": true,
"nextCursor": "<string>",
"totalCount": 123
}Retrieve a list of verifications with optional filtering by customer ID and status.
curl --request GET \
--url https://api.lightspark.com/grid/2025-10-13/verifications \
--header 'Authorization: Basic <encoded-value>'{
"data": [
{
"id": "Verification:019542f5-b3e7-1d02-0000-000000000001",
"customerId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"verificationStatus": "RESOLVE_ERRORS",
"errors": [
{
"resourceId": "Customer:019542f5-b3e7-1d02-0000-000000000001",
"type": "MISSING_FIELD",
"reason": "Business address line 1 is required",
"field": "customer.address.line1",
"acceptedDocumentTypes": [
"PASSPORT"
]
}
],
"createdAt": "2025-10-03T12:00:00Z",
"updatedAt": "2025-10-03T12:00:00Z"
}
],
"hasMore": true,
"nextCursor": "<string>",
"totalCount": 123
}API token authentication using format <api token id>:<api client secret>
Filter by customer ID
Filter by verification status Current status of the KYC/KYB verification
RESOLVE_ERRORS, PENDING_MANUAL_REVIEW, IN_PROGRESS, APPROVED, REJECTED "RESOLVE_ERRORS"
Maximum number of results to return (default 20, max 100)
1 <= x <= 100Cursor for pagination (returned from previous request)
Successful operation
List of verifications matching the filter criteria
Show child attributes
Indicates if more results are available beyond this page
Cursor to retrieve the next page of results (only present if hasMore is true)
Total number of results matching the criteria
Was this page helpful?