Skip to main content
POST
/
api
/
showman
/
events
/showman/events
curl --request POST \
  --url https://api.anysite.io/api/showman/events \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "event": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "source_url": "<string>",
    "@type": "ShowmanEvent",
    "id": "<string>",
    "sku": "<string>",
    "description": "<string>",
    "image": "<string>",
    "images": [],
    "category": "<string>",
    "genres": [],
    "start_at": "<string>",
    "end_at": "<string>",
    "city": "<string>",
    "venue": "<string>",
    "address": "<string>",
    "country": "<string>",
    "price_min": 123,
    "price_max": 123,
    "currency": "ILS",
    "ticket_url": "<string>",
    "event_status": "<string>",
    "attendance_mode": "<string>",
    "is_in_stock": true,
    "lang": "ru",
    "sessions": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
event
string
required

Event slug or event page URL

Minimum string length: 1
Examples:

"anna-asti-shou-carica"

"https://showman.co.il/e/anna-asti-shou-carica/"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
source_url
string
required
@type
string
default:ShowmanEvent
id
string | null
sku
string | null
description
string | null
image
string | null
images
string[]
category
string | null
genres
string[]
start_at
string | null
end_at
string | null
city
string | null
venue
string | null
address
string | null
country
string | null
price_min
number | null
price_max
number | null
currency
string
default:ILS
ticket_url
string | null
event_status
string | null
attendance_mode
string | null
is_in_stock
boolean | null
lang
string
default:ru
sessions
object[]