v1
latestOpenAPI 3.1.02026-07-263644911022.4 KBExecutor Configurations API
List Executor Configurations
Use this endpoint to retrieve a paginated list of executor configurations. You can filter results by status.
get/v1/executors
Query parameters
status'unconfigured' | 'configured' | 'tested' | 'active' | 'disabled'
Filter results by status.
limitinteger
Maximum number of items to return per page. Defaults to 10. Must be between 1 and 100.
cursorstring
Cursor for pagination. Use the value from the nextCursor field in a previous response to retrieve the next page.
sortBy'createdAt' | 'updatedAt' | 'name'
Field to sort results by.
sortOrder'ASC' | 'DESC'
Sort direction. Use ASC for ascending or DESC for descending.
Response
Indicates that the request was successful and the response contains the requested data.
Example response
{
"items": [
{
"id": "b2c3d4e5-f6a7-8901-bcde-f23456789012",
"name": "Serasa KYC",
"description": "Serasa identity validation service",
"baseUrl": "https://api.serasa.com.br/v2",
"endpoints": [
{
"name": "validate-identity",
"path": "/identity/validate",
"method": "POST",
"timeout": 30
}
],
"authentication": {
"type": "api_key",
"config": {
"key": "********",
"header": "X-API-Key"
}
},
"status": "active",
"createdAt": "2026-03-15T10:00:00Z",
"updatedAt": "2026-03-16T09:30:00Z"
}
],
"nextCursor": "",
"hasMore": false
}