Indoor Updates

Venue Updates (full or delta)

Returns a list of Venues, either all available or only those modified since a given timestamp.

get/web/venues

Query parameters

tsinteger

Unix timestamp (in seconds). Filters venues updated since this time.

Example:1759329493

Unix timestamp (in seconds). Filters venues updated since this time.

allboolean

Return all venues ignoring ts. Accepted values: true, false, 1, 0, yes, no.

Example:true

Return all venues ignoring ts. Accepted values: true, false, 1, 0, yes, no.

Response

idinteger
namestring
short_namestring
slugstring
codestring
play_fieldsinteger
heightnumber
latitudenumber
longitudenumber
address_statusinteger
typestring
is_activeboolean
notestring
season_idinteger
federation_idinteger
created_atstring
updated_atstring
deleted_atstring

Example response

[
  {
    "id": 1,
    "name": "Main Hall",
    "short_name": "MH",
    "slug": "main-hall",
    "code": "main-hall-10",
    "play_fields": 2,
    "height": 10.5,
    "latitude": 48.123456,
    "longitude": 11.654321,
    "address_status": 1,
    "type": "Indoor",
    "is_active": true,
    "note": "Main indoor venue",
    "season_id": 5,
    "federation_id": 10,
    "created_at": "2023-01-01 09:00:00",
    "updated_at": "2025-10-10 12:00:00",
    "deleted_at": null
  }
]

Changes

No recorded changes to this endpoint across all 1 revision of this API.