> ## Documentation Index
> Fetch the complete documentation index at: https://docs.oddspapi.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Venues

> List venues by explicit IDs.

Name fields are returned in the requested language when available.



## OpenAPI

````yaml /api-reference/openapi.json get /venues
openapi: 3.1.0
info:
  title: Odds API v5
  version: 5.0.0
  description: High-performance odds API backed by Valkey + Supabase RPC discovery.
servers:
  - url: https://v5.oddspapi.io/en
security:
  - ApiKeyAuth: []
tags:
  - name: common
  - name: fixtures
  - name: fixtures/odds
  - name: futures
  - name: futures/odds
  - name: mapping
  - name: media
  - name: settlement
paths:
  /venues:
    get:
      tags:
        - common
      summary: Get Venues
      description: |-
        List venues by explicit IDs.

        Name fields are returned in the requested language when available.
      operationId: get_venues__lang__venues_get
      parameters:
        - name: venueIds
          in: query
          required: true
          schema:
            type: string
          description: Comma/space-separated venue IDs, e.g. `1234,5678`.
      responses:
        '200':
          description: Returns Venue[]
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Venue'
              examples:
                example:
                  summary: Venues list
                  value:
                    - venueId: 1234
                      venueSlug: camp-nou
                      venueName: Camp Nou
                      venueLocation: Barcelona, Spain
                    - venueId: 5678
                      venueSlug: state-farm-arena
                      venueName: State Farm Arena
                      venueLocation: Atlanta, USA
        '400':
          $ref: '#/components/responses/ApiError'
        '401':
          $ref: '#/components/responses/ApiError'
        '422':
          $ref: '#/components/responses/ValidationError'
        '429':
          $ref: '#/components/responses/ApiError'
components:
  schemas:
    Venue:
      type: object
      properties:
        venueId:
          type: integer
        venueSlug:
          type: string
        venueName:
          anyOf:
            - type: string
            - type: 'null'
        venueLocation:
          anyOf:
            - type: string
            - type: 'null'
      required:
        - venueId
        - venueSlug
      additionalProperties: true
    Error:
      type: object
      description: Concrete error format returned by this API (no FastAPI detail wrapper).
      properties:
        error:
          type: integer
          description: HTTP status code
        message:
          type: string
          description: Human-readable error message
        code:
          type: string
          description: Machine-readable reason code
        details:
          description: Optional extra details (string/object/array depending on the error).
      required:
        - error
        - message
      additionalProperties: true
    HTTPValidationError:
      title: HTTPValidationError
      type: object
      properties:
        detail:
          title: Detail
          type: array
          items:
            $ref: '#/components/schemas/ValidationError'
    ValidationError:
      title: ValidationError
      type: object
      required:
        - loc
        - msg
        - type
      properties:
        loc:
          title: Location
          type: array
          items:
            anyOf:
              - type: string
              - type: integer
        msg:
          title: Message
          type: string
        type:
          title: Error Type
          type: string
  responses:
    ApiError:
      description: API error
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
          examples:
            invalid_filters:
              summary: Invalid filters
              value:
                error: 400
                message: Invalid filters.
                reason: invalid_filters
            invalid_api_key:
              summary: Invalid apiKey
              value:
                error: 401
                message: invalid apiKey
                reason: invalid_api_key
            rate_limited:
              summary: Rate limited
              value:
                error: 429
                message: rate limit exceeded
                reason: rate_limited
                retryAfterSec: 1
    ValidationError:
      description: Validation Error (framework-level)
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/HTTPValidationError'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: query
      name: apiKey
      description: Your API key (query-based auth for v5).

````