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

# Get Venue Quotes

> Get quotes for all venues

Retrieve pricing quotes for all venues associated with your event.

### Path Parameters

<ParamField path="eventId" type="string" required>
  The ID of your event
</ParamField>


## OpenAPI

````yaml GET /events/{eventId}/quotes
openapi: 3.0.1
info:
  title: Nowadays API
  description: >-
    API documentation for managing events and venue proposals in the Nowadays
    system
  version: 1.0.0
servers:
  - url: https://nowadays.ai/api/northstar
security:
  - bearerAuth: []
paths:
  /events/{eventId}/quotes:
    get:
      summary: Get Venue Quotes
      description: Returns quotes for all venues associated with an event
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: string
      responses:
        '200':
          description: List of venue quotes
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/VenueQuote'
components:
  schemas:
    VenueQuote:
      type: object
      properties:
        venue_id:
          type: string
        venue_name:
          type: string
        city:
          type: string
        quote_total:
          type: number
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````