Skip to main content
GET
/
api
/
v1
/
positions
/
open
List open positions
curl --request GET \
  --url https://partners.centaur.io/api/v1/positions/open \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "results": [
      {
        "id": 123,
        "direction": "long",
        "openAt": "2023-11-07T05:31:56Z",
        "openPrice": 123,
        "currentPrice": 123,
        "currentReturnPercentage": 123,
        "priceAsOf": "2023-11-07T05:31:56Z",
        "trader": {
          "id": 123,
          "name": "<string>",
          "slug": "<string>",
          "avatarUrl": "<string>"
        },
        "asset": {
          "id": 123,
          "name": "<string>",
          "symbol": "<string>",
          "logoUrl": "<string>"
        }
      }
    ],
    "meta": {
      "hasMore": true,
      "nextCursor": "<string>"
    }
  },
  "requestId": "c8e2c6e4-80dd-4ffc-9d66-4e31bf64c6b8"
}

Authorizations

x-api-key
string
header
default:<partner-api-key>
required

Partner API key issued by Centaur.

Query Parameters

traderIds

Filter to specific trader IDs.

assetIds

Filter to specific asset IDs.

directions

Filter to long and/or short positions.

limit
integer

Maximum number of rows to return.

Required range: 1 <= x <= 100
cursor
string

Forward pagination cursor from meta.nextCursor.

Minimum string length: 1

Response

Paginated open positions

success
enum<boolean>
required
Available options:
true
data
object
required
requestId
string
required
Example:

"c8e2c6e4-80dd-4ffc-9d66-4e31bf64c6b8"

Last modified on April 20, 2026