Skip to main content
GET
/
v1
/
executors
List Executor Configurations
curl --request GET \
  --url https://flowker.sandbox.lerian.net/v1/executors \
  --header 'X-API-Key: <api-key>'
{
  "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
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests to the Flowker API. Provisioned via the API_KEY environment variable during deployment.

Query Parameters

status
enum<string>

Filter results by status.

Available options:
unconfigured,
configured,
tested,
active,
disabled
limit
integer
default:10

Maximum number of items to return per page. Defaults to 10. Must be between 1 and 100.

Required range: 1 <= x <= 100
cursor
string

Cursor for pagination. Use the value from the nextCursor field in a previous response to retrieve the next page.

sortBy
enum<string>
default:createdAt

Field to sort results by.

Available options:
createdAt,
updatedAt,
name
sortOrder
enum<string>
default:DESC

Sort direction. Use ASC for ascending or DESC for descending.

Available options:
ASC,
DESC

Response

Indicates that the request was successful and the response contains the requested data.

hasMore
boolean

Indicates whether more pages are available.

Example:

false

items
object[]

List of executor configurations in the current page.

nextCursor
string

Cursor for the next page.

Example:

""