Skip to main content
GET
/
api
/
public
/
v1
/
orders
List buy orders
curl --request GET \
  --url https://thefirm.biz/api/public/v1/orders \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "slug": "thefirm",
      "status": "active",
      "maxSpendUsdc": "50",
      "maxFdvUsdc": "5000000",
      "expiresInMs": 86400000,
      "createdAt": "2026-01-15T09:30:00.000Z",
      "updatedAt": null
    },
    {
      "slug": "charms",
      "status": "active",
      "maxSpendUsdc": "25",
      "maxFdvUsdc": null,
      "expiresInMs": 3600000,
      "createdAt": "2026-01-14T12:00:00.000Z",
      "updatedAt": "2026-01-15T08:00:00.000Z"
    }
  ],
  "meta": {
    "limit": 20,
    "nextCursor": "eyJtYXhTcGVuZFVzZGNBdG9taWMiOiIyNTAwMDAwMCIsImlkIjoiYjJjM2Q0ZTUifQ"
  }
}

Authorizations

Authorization
string
header
required

API key issued via POST /api/public/v1/api-keys.

Query Parameters

cursor
string

Opaque cursor marking where the previous page ended. Omit it to fetch the first page; pass the meta.nextCursor from a response verbatim to fetch the next. A null meta.nextCursor means there are no more pages. Treat the value as opaque — its format varies per endpoint.

Minimum string length: 1
limit
integer | null
default:20

Maximum number of items per page. Defaults to 20; values are clamped to 1–100.

status
enum<string>
Available options:
active,
execution_in_progress,
execution_success,
execution_failed,
deleted,
monitoring_started,
monitoring_expired

Response

A page of buy orders.

data
object[]
required
meta
object
required