Skip to main content
GET
/
partner
/
exchange
/
fills
Get recent fills
curl --request GET \
  --url https://api.stabyl.com/v1/partner/exchange/fills \
  --header 'X-Api-Key: <api-key>'
{
  "data": {
    "fills": [
      {
        "created_at": "2026-05-24T12:00:00Z",
        "id": "0197f1f0-0000-7000-8000-000000000009",
        "price": "1650.00",
        "quantity": "10.00",
        "sequence": 12345,
        "side": "buy"
      }
    ]
  },
  "status": "success"
}

Documentation Index

Fetch the complete documentation index at: https://stabyl.mintlify.app/llms.txt

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

Authorizations

X-Api-Key
string
header
default:sb_test_your_key
required

API key. Send it in the X-Api-Key header.

Query Parameters

pair_id
string
required

Trading pair identifier returned by GET /partner/exchange/markets, for example USD/NGN.

limit
integer<int64> | null

Number of fill entries to return. Defaults to 50 and is capped by the API.

Response

Recent fills

data
object
required

Recent public execution entries returned in fills format.

status
enum<string>
required
Available options:
success