Skip to main content
POST
/
v1
/
connections
List connection statuses
curl --request POST \
  --url https://api.anthid.com/v1/connections \
  --header 'Content-Type: application/json' \
  --data '
{
  "account_ids": [
    "550e8400-e29b-41d4-a716-446655440000",
    "550e8400-e29b-41d4-a716-446655440001"
  ]
}
'
{
  "data": [
    {
      "account_id": "550e8400-e29b-41d4-a716-446655440000",
      "status": "Active"
    },
    {
      "account_id": "550e8400-e29b-41d4-a716-446655440001",
      "status": "Pending"
    }
  ]
}

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.

Body

application/json

List of broker connection account ids to check

account_ids
string<uuid>[]
required

Response

Statuses retrieved for resolvable connection accounts only

data
object[]
required