Skip to main content

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.

Get started in three steps

Connect your broker, get an account ID, and submit your first intent.

Step 1: Create your account

  1. Sign up for an Anthid account
  2. Log in to your dashboard

Step 2: Create a broker connection

  1. Go to Organization Settings
  2. Click Create Broker Connection
  3. Select your broker and enter your credentials
  4. Submit the form

Step 3: Get your account_id

  1. Navigate to Broker Connections
  2. Find your connection
  3. Copy the account_id

Submit your first intent

curl https://api.anthid.com/v1/intent \
  -X POST \
  -H "Authorization: Bearer <YOUR_API_KEY>" \
  -H "Content-Type: application/json" \
  -d '{
    "account_id": "YOUR_ACCOUNT_ID",
    "action": {
      "type": "create",
      "payload": {
        "symbol": "AAPL",
        "route_strategy": "SMART",
        "order_side": "BUY",
        "order_spec": {
          "type": "limit",
          "price": { "integer": 10000, "precision": 2 },
          "quantity": 10,
          "time_in_force": "DAY"
        }
      }
    }
  }'

What happens next

  • Your intent is recorded
  • The order is sent to your broker
  • Updates are streamed in real time