v4

latestOpenAPI 3.1.02026-08-01131465.2 KB
Buy Orders

Create buy orders

Creates one or more pre-launch buy orders for the listed projects — each buy order auto-buys that project's future token at launch.

  • Each item is processed independently. The response is always HTTP 200 once authenticated and the body is valid — check the per-item ok flag in results (index-aligned to your request) for each outcome.
  • Re-ordering a project that already has an active buy order is idempotent (status: "unchanged").
post/api/public/v1/orders

Request body

Example request

{
  "items": [
    {
      "slug": "thefirm",
      "maxSpendUsdc": "50",
      "maxFdvUsdc": "5000000",
      "expiresInMs": 86400000
    }
  ]
}

Response

Per-item results for the batch.

Example response

{
  "results": [
    {
      "slug": "thefirm",
      "status": "created"
    }
  ]
}