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

# Get event

> Fetch a single event's detail by its public id. An event that does not exist and one the key cannot reach both return 404.



## OpenAPI

````yaml /openapi.json get /v1/events/{id}
openapi: 3.0.0
info:
  title: Nowadays Public API
  description: Public developer API for reading Nowadays data.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.nowadays.ai
security: []
tags: []
paths:
  /v1/events/{id}:
    get:
      tags:
        - Events
      summary: Get event
      description: >-
        Fetch a single event's detail by its public id. An event that does not
        exist and one the key cannot reach both return 404.
      operationId: PublicEventsController_get
      parameters:
        - name: id
          required: true
          in: path
          description: The event's public id (UUID).
          schema:
            type: string
      responses:
        '200':
          description: The event's public detail view
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PublicEventDetailDto'
        '400':
          description: Malformed event id
        '401':
          description: Missing or invalid API key
        '404':
          description: Event not found
        '429':
          description: Rate limit exceeded
      security:
        - x-api-key: []
components:
  schemas:
    PublicEventDetailDto:
      type: object
      properties:
        id:
          type: string
          description: Stable public identifier (UUID).
          example: 3f1a2b4c-5d6e-7f80-9a1b-2c3d4e5f6071
        name:
          type: string
          description: Event name.
          example: Annual Conference 2026
        dates:
          description: Event date windows.
          type: array
          items:
            $ref: '#/components/schemas/PublicEventDateDto'
        locations:
          description: Display location strings.
          example:
            - Monterey, CA, USA
          type: array
          items:
            type: string
        numPeople:
          type: number
          description: Expected attendee count.
          example: 120
        status:
          type: string
          description: Event status.
          example: wait_for_proposals
        createdAt:
          type: string
          description: Creation timestamp (ISO 8601).
          example: '2026-01-01T00:00:00.000Z'
        venueType:
          type: string
          description: Venue type.
          example: hotel
        numHotelRoomsNeeded:
          type: number
          description: Estimated hotel rooms needed.
          example: 50
          nullable: true
        isMultiDay:
          type: boolean
          description: Whether the event spans multiple days.
          example: true
          nullable: true
        otherNotes:
          type: string
          description: Free-text notes about the event.
          example: Bring badges
          nullable: true
        currency:
          type: string
          description: ISO 4217 currency code.
          example: USD
      required:
        - id
        - name
        - dates
        - locations
        - numPeople
        - status
        - createdAt
        - venueType
        - currency
    PublicEventDateDto:
      type: object
      properties:
        startDate:
          type: string
          example: '2026-03-15'
        endDate:
          type: string
          example: '2026-03-17'
        date:
          type: string
          example: '2026-03-15'
  securitySchemes:
    x-api-key:
      type: apiKey
      in: header
      name: x-api-key

````