POST
/
workflow
/
search
curl --request POST \
  --url https://{api-address}.org.machina.gg/workflow/search \
  --header 'Content-Type: application/json' \
  --header 'x-api-token: <api-key>' \
  --data '{
  "filters": {},
  "sorters": [
    "name",
    1
  ],
  "page": 1,
  "page_size": 10
}'
{
  "data": [
    {
      "_id": "67db52c32ae92018b93310a1",
      "created": "Wed, 20 Mar 2025 14:30:00 GMT",
      "name": "thread",
      "value": {
        "messages": [
          "test"
        ]
      },
      "metadata": {
        "agent_id": "123"
      },
      "status": "active",
      "date": "Wed, 20 Mar 2025 14:30:00 GMT"
    }
  ],
  "total_documents": 15,
  "status": true
}

Authorizations

x-api-token
string
header
required

API key authentication

Body

application/json
filters
object

Query filters object

sorters
string[]

Array containing field name and sort direction

Example:
["name", 1]
page
integer
default:1

Page number (starts from 1)

page_size
integer
default:10

Number of items per page

Response

200
application/json
Successful operation
data
object[]

Array of matching workflows

total_documents
integer

Total number of matching workflows

status
boolean

Operation status