Skip to content
777 Raptor

Technology · API

Connect everything.

If the platform can do it, the API can do it. Raptor exposes the same primitives its own surfaces are built on, which is the only way an API stays current.

What it is
A programmatic interface to accounts, instruments, market data, orders, positions and reporting, across four transports.
Who it is for
Developers at brokers, institutions and prop desks building their own tooling on top of Raptor.
Why it matters
An API that lags the product becomes a support burden. Building the product on its own API prevents that.
How it connects
API calls pass the same permission and risk checks as the interface. There is no back door.
What happens next
Request sandbox keys and build against simulated data before you talk commercials.

API Hub

Connect everything.

If the platform can do it, the API can do it. Raptor exposes the same primitives its own surfaces are built on, across four transports, under one permission model.

Hostnames, keys and identifiers in these examples are illustrative.

REST example
# Place an order
curl -X POST https://api.777raptor.example/v1/orders \
  -H "Authorization: Bearer rk_live_EXAMPLE_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: 9f2c1a7e-4b10-4d3a-8e21-77a0c5d1b402" \
  -d '{
    "account_id": "acc_8HQ2XV",
    "symbol": "EURUSD",
    "side": "buy",
    "type": "limit",
    "quantity": 0.40,
    "price": 1.08420,
    "time_in_force": "gtc"
  }'

# 201 Created
{
  "id": "ord_4KD7NP",
  "status": "working",
  "symbol": "EURUSD",
  "side": "buy",
  "quantity": 0.40,
  "filled_quantity": 0.00,
  "price": 1.08420,
  "risk_checks": ["exposure", "concentration", "margin"],
  "created_at": "2026-05-28T09:14:02.118Z"
}

Four transports

01

REST

Accounts, instruments, orders, positions and reporting over versioned JSON endpoints.

02

WebSocket

Streaming prices, order and position updates, and account events.

03

FIX

Standard FIX sessions for institutional order flow and execution reporting.

04

Webhooks

Signed, retried delivery of account, funding and execution events to your systems.

05

Authentication

Scoped API keys with least-privilege permissions and rotation.

06

Rate limits

Documented, per-key limits with headers that tell you where you stand.

Get sandbox keys

Sandbox keys run against simulated market data, so you can build and test without a commercial commitment.