GET
/
v1
/
venues
/
{id}
Get venue by id
curl --request GET \
  --url https://api.hofj.com/v1/venues/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "<string>",
    "title": "<string>",
    "slug": "<string>",
    "shortDescription": "<string>",
    "rating": 123,
    "categoryId": "<string>",
    "destinationId": "<string>",
    "coverUrl": "<string>"
  }
}

Authorizations

Authorization
string
header
default:dev-internal-api-key
required

Use Authorization: Bearer <access_token> from POST /v1/oauth/token, or Authorization: Bearer <api_key>. Dev-only example key (do not use in production): see repository README.

Path Parameters

id
string
required

Query Parameters

brand
string
locale
string

Response

OK

data
object