Skip to main content
GET
/
api
/
v1
/
flows
List flows (paginated, filterable)
curl --request GET \
  --url https://{subdomain}.mihu.ai/api/v1/flows \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": [
    {
      "uuid": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "description": "<string>",
      "status": "draft",
      "apps": [
        {
          "uid": "<string>",
          "name": "<string>",
          "icon": "<string>"
        }
      ],
      "apps_count": 123,
      "agents_count": 123,
      "steps_count": 123,
      "updated_at": "2023-11-07T05:31:56Z",
      "updated_at_human": "3 weeks ago"
    }
  ],
  "meta": {
    "current_page": 1,
    "total": 123,
    "last_page": 123,
    "per_page": 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}"

Query Parameters

page
integer
default:1
per_page
integer
default:20
Required range: x <= 100
status
enum<string>
Available options:
draft,
deployed

Substring match against the flow name.

sort
string
default:updated_at:desc

Format column:direction. Allowed columns: updated_at (default), created_at, name. Direction: asc, desc.

Response

200 - application/json

OK

success
boolean
Example:

true

data
object[]
meta
object