Skip to main content
GET
/
templates
/
custom
List custom templates
curl --request GET \
  --url https://api.anycheck.ai/templates/custom \
  --header 'Authorization: Bearer <token>'
{
  "total": 10,
  "items": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "KTP Verification",
      "description": "Template for KTP document verification and data extraction",
      "custom_id": "<string>",
      "type": "CUSTOM",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.fintelite.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login endpoint.

Example:

Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...

Query Parameters

page_offset
integer
default:0

Number of items to skip

page_size
integer
default:10

Number of items per page

Response

List of custom templates

total
integer

Total number of custom templates

Example:

10

items
object[]