Skip to main content

GET /api/v1/search_events

Search for events by name. Performs a case-insensitive text search across event names in all supported languages.

Authentication

None required.

Request

ParameterTypeInDescription
qstringqueryRequired. Search query string
limitintqueryMaximum number of results to return

Example

curl "https://api.intotes.com/api/v1/search_events?q=bitcoin&limit=5"

Response

200 OK

[
{
"id": 1,
"name": "Will Bitcoin hit $100k by EOY?",
"name_ru": "Bitcoin достигнет $100k к концу года?",
"tags": ["crypto", "bitcoin"],
"image_url": "https://images.intotes.com/events/btc-100k.png",
"status": "started",
"is_active": true,
"created_at": "2026-01-10T08:30:00Z",
"pools": []
},
{
"id": 2,
"name": "Bitcoin ETF daily volume over $1B",
"name_ru": "Дневной объём Bitcoin ETF превысит $1B",
"tags": ["crypto", "bitcoin", "etf"],
"image_url": "https://images.intotes.com/events/btc-etf.png",
"status": "started",
"is_active": true,
"created_at": "2026-02-05T14:00:00Z",
"pools": []
}
]