Skip to main content
POST
/
api
/
eventsge
/
events
/
search
/eventsge/events/search
curl --request POST \
  --url https://api.anysite.io/api/eventsge/events/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "keyword": "концерт",
  "category": "rok",
  "place": 123,
  "hall": 123,
  "date_from": "2026-08-01",
  "date_to": "2026-09-01",
  "date_type": "active",
  "sort": "asc",
  "lang": "ru"
}
'
[
  {
    "id": 123,
    "@type": "EventsgeEvent",
    "event_source_id": 123,
    "annotation": "<string>",
    "description": "<string>",
    "start_at": "<string>",
    "end_at": "<string>",
    "dates": [],
    "is_periodical": true,
    "category": "<string>",
    "category_slug": "<string>",
    "category_type": "<string>",
    "venue": "<string>",
    "address": "<string>",
    "city": "<string>",
    "city_slug": "<string>",
    "country": "<string>",
    "restriction": "<string>",
    "hall": "<string>",
    "performers": [],
    "price": 123,
    "currency": "<string>",
    "image": "<string>",
    "images": [],
    "qna": [],
    "source_url": "<string>",
    "lang": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of events to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
keyword
string | null

Full-text search query

Example:

"концерт"

city
enum<string> | null

City to filter by

Available options:
tbilisi,
batumi,
rustavi,
poti
category
string | null

Category slug to filter by

Example:

"rok"

place
integer | null

Venue (place) id to filter by

hall
integer | null

Hall id to filter by

date_from
string | null

Only events starting on or after this date (YYYY-MM-DD)

Example:

"2026-08-01"

date_to
string | null

Only events starting on or before this date (YYYY-MM-DD)

Example:

"2026-09-01"

date_type
enum<string>
default:active

Whether to return upcoming or past events

Available options:
active,
past
sort
enum<string>
default:asc

Sort by event start date

Available options:
asc,
desc
lang
enum<string>
default:ru

Content language

Available options:
ru,
en,
ka

Response

Successful Response

id
integer
required
@type
string
default:EventsgeEvent
event_source_id
integer | null
annotation
string | null
description
string | null
start_at
string | null
end_at
string | null
dates
object[]
is_periodical
boolean | null
category
string | null
category_slug
string | null
category_type
string | null
venue
string | null
address
string | null
city
string | null
city_slug
string | null
country
string | null
restriction
string | null
hall
string | null
performers
string[]
price
number | null
currency
string | null
image
string | null
images
string[]
qna
object[]
source_url
string | null
lang
string | null