Insight API
HomeContact Us
HomeContact Us
LinkedIn
Github
  1. Venues
  • Getting Started with Insight
  • Example Requests
  • Recognition & Branding Requirements
  • Discovery
    • Generate New Discovery
      POST
    • Get a Specific Discovery
      GET
    • Get All Discoveries
      GET
  • Genres
    • Get Genres
      GET
  • Artists
    • Search Artists
      GET
    • Get a Specific Artist
      GET
  • Venues
    • Search Venues
      GET
    • Get a Specific Venue
      GET
  • Pulse AI
    • Chat Completions API
    • Get Models
      GET
    • Chat Completions Endpoint
      POST
    • Healthcheck
      GET
  1. Venues

Get a Specific Venue

Testing
GET
https://insight.lineupiq.io/api/v1/venues/{venue_id}
Beta TestingDiscoveryInsightPredictionsVenue Intelligence
BETA TESTING
This API is Currently in Closed Beta Testing, If you would like to be included in the closed Beta, please reach out to support.
If there is something specific you would like to see with any of these endpoints, drop a support ticket and let us know!

Request

Path Params
venue_id
integer <int32>
write-onlyrequired
Example:
8004394
Query Params
type
enum<string> 
write-onlyoptional
'detailed' or 'simple'
Allowed values:
simpledetailed
Default:
simple
Example:
detailed
include
enum<string> <char>
write-onlyoptional
Comma Separated list of Enums
Allowed values:
eventsartistssocial_platformsgenres
Example:
artists,events
Header Params
x-app-id
string <password>
required
Default:
{{x-app-id}}
x-api-key
string <password>
required
Default:
{{x-api-key}}
Content-Type
string 
optional
Default:
application/json

Request samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://insight.lineupiq.io/api/v1/venues/8004394?type=detailed' \
--header 'x-app-id;' \
--header 'x-api-key;' \
--header 'Content-Type: application/json'

Responses

🟢200Simple Response (Default)
application/json
Body
id
integer <int32>
required
name
string <char>
required
Venue Name
city
string <char> | null 
required
City
region_code
string <char> | null 
required
2 Character ISO State/Region Code
>= 2 characters<= 2 characters
Examples:
FLTX
country_code
string <char> | null 
required
2 Character ISO Country Code
>= 2 characters<= 2 characters
Examples:
USCA
coords
string <char> | null 
required
Comma Separated String of Lat/Long
Example:
"53.50970000, -113.69720000"
type
string <char>
required
Type of Venue
Examples:
VenueNightclub
capacity
integer <int32> | null 
required
Total Capacity of the Venue
>= 0<= 1000000
Example:
20000
permanently_closed
boolean 
required
If the venue is Shutdown or Active
Default:
false
Example
{
  "id": "8004394",
  "name": "River Cree Resort Casino",
  "city": "Edmonton",
  "region_code": "AB",
  "country_code": "CA",
  "coords": "53.50970000, -113.69720000",
  "type": "venue",
  "capacity": 2400,
  "permanently_closed": false
}
🟠404Record not found
🟠422Invalid input
🟠401Unauthorized
🟠403Forbidden
🟢200Detailed Response
Previous
Search Venues
Next
Chat Completions API
Built with