Skip to main content
GET
/
v1
/
accounts
/
{account_id}
/
intents
/
{intent_id}
/
actions
List intent actions
curl --request GET \
  --url https://api.anthid.com/v1/accounts/{account_id}/intents/{intent_id}/actions
{
  "data": [
    {
      "account_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "created_at": "2023-11-07T05:31:56Z",
      "intent_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "quantity": 123,
      "seq": 123,
      "symbol": "<string>",
      "client_reference_id": "<string>",
      "limit_price": {
        "integer": 123,
        "precision": 1
      }
    }
  ],
  "next_cursor": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.anthid.com/llms.txt

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

Headers

x-organization-id
string<uuid> | null

Organization id required when reading with service-account credentials

Path Parameters

account_id
string<uuid>
required

Trading account id that owns the intent

intent_id
string<uuid>
required

Intent id whose actions should be listed

Query Parameters

next_cursor
string

Sequence cursor returned by a previous response

limit
integer

Maximum number of actions to return. Values are clamped to the range 1 through 100.

Required range: x >= 0

Response

Intent actions retrieved

data
object[]
required

Intent action records ordered by ascending sequence number.

next_cursor
string | null

Opaque pagination cursor for the next page of intent actions.