For the complete documentation index, see llms.txt. This page is also available as Markdown.

Locations

List locations.

List locations

get
Authorizations
AuthorizationstringRequired
Bearer authentication header of the form Bearer <token>.
Query parameters
pageinteger · min: 1OptionalDefault: 1
Responses
200

Paginated list of locations.

application/json
get/locations
GET /api/v1/locations HTTP/1.1
Host: app.heyguest.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
200

Paginated list of locations.

{
  "links": {
    "first": "text",
    "last": "text",
    "prev": "text",
    "next": "text"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 1,
    "path": "text",
    "per_page": 15,
    "to": 1,
    "total": 1
  },
  "data": [
    {
      "id": "123e4567-e89b-12d3-a456-426614174000",
      "name": "text",
      "created_at": "2026-01-01T00:00:00.000Z",
      "updated_at": "2026-01-01T00:00:00.000Z"
    }
  ]
}

Last updated