Orders

Get list of orders

Get list of orders

get

Get list of orders

Query parameters
chain_idstringOptional

Chain ID

token_addressstringOptional

Token address

token_idstringOptional

Token ID

collection_idstringOptional

Collection ID

owner_idstringOptional

Owner ID

statusstring · enumOptional

Status of these asset

Possible values:
limitintegerOptional

Limit

pagestringOptional

Current page number

order_bystring · enumOptional

Property to sort by

Possible values:
directionstring · enumOptional

Direction to sort

Possible values:
Responses
200
OK
application/json
get
GET /v1/orders HTTP/1.1
Host: api.sandbox.horizonland.app
Accept: */*
{
  "cursor": "text",
  "remaining": 1,
  "result": [
    {
      "offer": {
        "assets": {
          "cursor": "text",
          "remaining": 1,
          "result": [
            {
              "collection": {
                "image_url": "text",
                "name": "text",
                "contract_address": "text"
              },
              "created_at": "text",
              "description": "text",
              "fees": [
                {
                  "address": "text",
                  "basis_points": 1,
                  "type": "text"
                }
              ],
              "id": "text",
              "image_url": "text",
              "animation_url": "text",
              "external_link": "text",
              "metadata": {},
              "name": "text",
              "listing": {
                "closing_date": "text",
                "fees": [
                  {
                    "address": "text",
                    "basis_points": 1,
                    "type": "text"
                  }
                ],
                "accept_price": 1,
                "start_price": 1,
                "current_price": 1,
                "name": "text",
                "token_address": "text",
                "token_id": "text",
                "chain": {
                  "id": "text",
                  "name": "text",
                  "symbol": "text"
                }
              },
              "status": "text",
              "token_address": "text",
              "token_id": "text",
              "chain": {
                "id": "text",
                "name": "text",
                "symbol": "text"
              },
              "updated_at": "text",
              "owner": "text"
            }
          ]
        },
        "taker": "text",
        "price": 1,
        "start_time": "text",
        "end_time": "text"
      },
      "status": "text",
      "created_at": "text",
      "updated_at": "text"
    }
  ]
}

Get detail of an order

Get detail of an order

get

Get detail of an order

Path parameters
idstringRequired

ID of order

Responses
200
OK
application/json
get
GET /v1/orders/{id} HTTP/1.1
Host: api.sandbox.horizonland.app
Accept: */*
{
  "offer": {
    "assets": {
      "cursor": "text",
      "remaining": 1,
      "result": [
        {
          "collection": {
            "image_url": "text",
            "name": "text",
            "contract_address": "text"
          },
          "created_at": "text",
          "description": "text",
          "fees": [
            {
              "address": "text",
              "basis_points": 1,
              "type": "text"
            }
          ],
          "id": "text",
          "image_url": "text",
          "animation_url": "text",
          "external_link": "text",
          "metadata": {},
          "name": "text",
          "listing": {
            "closing_date": "text",
            "fees": [
              {
                "address": "text",
                "basis_points": 1,
                "type": "text"
              }
            ],
            "accept_price": 1,
            "start_price": 1,
            "current_price": 1,
            "name": "text",
            "token_address": "text",
            "token_id": "text",
            "chain": {
              "id": "text",
              "name": "text",
              "symbol": "text"
            }
          },
          "status": "text",
          "token_address": "text",
          "token_id": "text",
          "chain": {
            "id": "text",
            "name": "text",
            "symbol": "text"
          },
          "updated_at": "text",
          "owner": "text"
        }
      ]
    },
    "taker": "text",
    "price": 1,
    "start_time": "text",
    "end_time": "text"
  },
  "status": "text",
  "created_at": "text",
  "updated_at": "text"
}

Last updated