Endpoint Playground
Test Crawlora's Find similar 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/events/similar?id=30615&event_title=World+Cup+Winner&event_slug=world-cup-winner&market_title=Will+Spain+win+the+2026+FIFA+World+Cup%3F&market_slug=will-spain-win-the-2026-fifa-world-cup-963&limit=10&closed=true" \
-H "x-api-key: $CRAWLORA_API_KEY"| Parameter | Type | Required | Prefilled value | Description |
|---|---|---|---|---|
| id | integer | No | 30615 | Polymarket event id |
| event_title | string | No | World Cup Winner | Event title |
| event_slug | string | No | world-cup-winner | Event slug |
| market_title | string | No | Will Spain win the 2026 FIFA World Cup? | Market title |
| market_slug | string | No | will-spain-win-the-2026-fifa-world-cup-963 | Market slug |
| limit | integer | No | 10 | Maximum events, defaults to 10 and supports up to 50 |
| closed | string | No | true | Closed filter |
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"events": []
}
}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.
Returns normalized similar events from Polymarket's credential-free public Gamma events/similar JSON.
{
"code": 200,
"msg": "OK",
"data": {
"source_url": "https://gamma-api.polymarket.com/...",
"fetched_at": "2026-06-07T11:00:00Z",
"events": []
}
}curl "https://api.crawlora.net/api/v1/polymarket/events/similar" \
-H "x-api-key: $CRAWLORA_API_KEY"