Skip to main content
GET
/
bank-statements
/
{id}
/
confidence-summary
/
{level}
/
pages
Get confidence level pages
curl --request GET \
  --url https://api.anycheck.ai/bank-statements/{id}/confidence-summary/{level}/pages \
  --header 'Authorization: Bearer <token>'
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"file_path": "<string>",
"confidence_level": "LOW",
"total": 2,
"pages": [
1,
2
]
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login endpoint.

Example:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Path Parameters

id
string<uuid>
required

Verification ID

level
enum<string>
required

Confidence level (case insensitive)

Available options:
LOW,
MEDIUM,
HIGH

Query Parameters

file_index
integer
required

File index (required, 0-based)

Required range: x >= 0
page_offset
integer
default:0

Number of records to skip for pagination

Required range: x >= 0
page_size
integer
default:10

Number of records per page

Required range: 1 <= x <= 100

Response

Confidence level page details

id
string<uuid>

Verification ID

file_path
string

Path to the analyzed file

confidence_level
enum<string>

Confidence level category

Available options:
LOW,
MEDIUM,
HIGH
Example:

"LOW"

total
integer

Total number of pages with this confidence level

Example:

2

pages
integer[]

List of page numbers with this confidence level

Example:
[1, 2]