Docs
API ReferenceReferenceApps

List published Apps

GET
/apps

Every published App in your organization, with the services each one enables and the Transaction Service schemas. Contracts come from each App's published version, so what is listed here is exactly what the execute endpoints serve.

Requires the apps:read scope.

AuthorizationBearer <token>

An organization API key, created from a Portal's Webhooks page (Provisioning API card). The secret is shown once at creation and stored only as a hash. Keys are organization-wide and carry scopes (end_users:read, end_users:write). Rate limit: 120 requests per minute per key (sliding 60-second window).

In: header

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/apps"
{  "apps": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "description": "string",      "services": {        "conversation": true,        "transaction": true      },      "inputSchema": {},      "outputSchema": {}    }  ]}