Skip to main content
GET
/
api
/
v1
/
flow
/
apps
/
{uid}
Read a single app by its uid
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/flow/apps/{uid} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "uid": "0fdd67fe-6cb2-47ec-b25d-65c1ff79a6b4",
    "name": "Slack",
    "description": "<string>",
    "icon": "<string>",
    "category": "builtin",
    "supports_trigger": true,
    "supports_action": true,
    "requires_connection": true,
    "triggers_count": 123,
    "actions_count": 123
  }
}

Documentation Index

Fetch the complete documentation index at: https://developers.mindhunters.ai/llms.txt

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

Authorizations

Authorization
string
header
required

Use a Bearer token to access these API endpoints. Example: "Bearer {your-token}"

Path Parameters

uid
string
required

App identifier (string slug, not always a UUID).

Response

OK

data
object

A Studio integration (Calls, Slack, Zoho CRM, Logic, …). Identified by uid (string slug). Either builtin (mihu's own — no OAuth) or connect (third-party — needs an app_connection).