Skip to main content

List of Entity Categories

Returns the list of supported entity categories available in BitOK KYT.

HTTP Request

GET /v1/basics/entity-categories/

Query Parameters

ParameterTypeRequiredDescription
pageintegerNoPage number within the paginated result set.
page_sizeintegerNoNumber of results to return per page.

If no parameters are provided, default pagination settings are used.

Response

A successful response returns HTTP 200 OK with a JSON body.

The result is an array of ENTITY_CATEGORY_INFO objects with the following fields:

FieldTypeDescription
idstringUnique identifier of the category (UUID).
codeStringThe code of the category.
nameStringThe name of the category.
descriptionstringText description of the category.
colorstringCategory color (HEX), used in user interfaces.
is_custombooleantrue if the category was created by the user.
created_atstringCreation timestamp in ISO 8601 format.

Example Response

{
"page": 1,
"page_size": 20,
"total_pages": 3,
"total_items": 43,
"items": [
{
"id": "fb87bb12-4202-4a5d-af9a-fc8e4b110386",
"name": "Child Abuse Material",
"code": "child_abuse_material",
"description": "Transactions linked to distribution of illegal materials. Highest risk.",
"color": "#880E4F",
"created_at": "2025-04-14T15:52:34.712080+03:00"
}
]
}

Try It

GET/v1/basics/entity-categories/
API KEY ID
API KEY SECRET
Query params (JSON)
HTTP Request
Press "Send Request" to generate HTTP request.
HTTP …
{
// Response will be shown here after the request.
}