Skip to main content
GET
/
api
/
v1
/
markets
/
search
Search markets
curl --request GET \
  --url https://api.0xinsider.com/api/v1/markets/search \
  --header 'Authorization: Bearer <token>'
{
  "object": "<string>",
  "data": [
    {
      "id": "<string>",
      "condition_id": "<string>",
      "title": "<string>",
      "status": "active",
      "slug": "<string>",
      "category": "<string>",
      "platform": "<string>"
    }
  ],
  "has_more": true,
  "meta": {
    "request_id": "<string>",
    "cached": true,
    "cache_age_s": 123
  }
}

Authorizations

Authorization
string
header
required

API key: Authorization: Bearer oxi_sk_test_...

Query Parameters

q
string
required

Search query.

limit
integer
default:20
Required range: 1 <= x <= 100
status
enum<string>
default:all

Filter by market status.

Available options:
active,
closed,
all
category
string

Filter by category.

Response

Search results

object
string
required
Allowed value: "list"
data
object[]
required
has_more
boolean
required
meta
object
required