Endpoint Playground
Test Crawlora's Search Polymarket events API with realistic prefilled parameters. Generate a cURL request, inspect the expected structured JSON response, and open the full docs or pricing page when you are ready to integrate this public web data extraction endpoint into your application.
curl "https://api.crawlora.net/api/v1/polymarket/search?q=bitcoin&limit=10&status=open&sort=relevance" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| q | string | Yes | bitcoin | Search query |
| limit | integer | No | 10 | Maximum events, defaults to 10 and supports up to 50 |
| status | string | No | open | Event status filter |
| sort | string | No | relevance | Search sort |
| ascending | boolean | No | Sort ascending when true | |
| include_tags | boolean | No | Include matching tags | |
| include_profiles | boolean | No | Include matching profiles |
{
"code": 200,
"msg": "OK",
"data": {
"query": "bitcoin",
"limit": 3,
"status": "open",
"sort": "relevance",
"has_more": true,
"total_results": 85651,
"events": [
{
"id": "545095",
"slug": "bitcoin-above-on-june-7-2026",
"title": "Bitcoin above ___ on June 7?",
"url": "https://polymarket.com/event/bitcoin-above-on-june-7-2026",
"active": true,
"closed": false,
"volume_24h": 1488954.909518,
"liquidity": 744375.66875,
"markets_count": 15
}
]
}
}Public Playground
Sample responses, schemas, request previews, and code snippets are visible before sign in. Create an account when you are ready to save an API key and run authenticated requests.
Searches Polymarket's credential-free public search JSON and returns normalized event results. The `status` enum accepts `open`, `closed`, and `all`; the `sort` enum accepts `relevance`, `volume24hr`, `volume`, `liquidity`, and `endDate`.
{
"code": 200,
"msg": "OK",
"data": {
"query": "bitcoin",
"limit": 3,
"status": "open",
"sort": "relevance",
"has_more": true,
"total_results": 85651,
"events": [
{
"id": "545095",
"slug": "bitcoin-above-on-june-7-2026",
"title": "Bitcoin above ___ on June 7?",
"url": "https://polymarket.com/event/bitcoin-above-on-june-7-2026",
"active": true,
"closed": false,
"volume_24h": 1488954.909518,
"liquidity": 744375.66875,
"markets_count": 15
}
]
}
}curl "https://api.crawlora.net/api/v1/polymarket/search?q=<q>" \
-H "x-api-key: $CRAWLORA_API_KEY"