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

# Get the event catalog

> Everything a buyer-facing page needs: ticket types (soldOut is a boolean, never a count), add-ons, bundles, the open agenda, speakers, and the published registration forms the types ask. A draft or foreign event answers 404 — indistinguishable from a nonexistent one.



## OpenAPI

````yaml /api-reference/storefront-openapi.json get /v1/events/{publicId}
openapi: 3.1.0
info:
  title: Orriven Storefront API
  version: '2026-08-22'
  description: >-
    The headless backend for your own event frontend — no backend of yours
    required. Authenticate every request with `Authorization: Bearer <opk_…>` (a
    publishable key, safe in browser code; it fronts exactly one portal).
    Attendee sign-in is email OTP — the platform sends the code — and the
    resulting session token travels in the `Orriven-Attendee-Token` header. The
    catalog never exposes counts, drafts or hidden ticket types; anything
    outside the portal answers 404.


    **Versioning** — date versions, the developer API's exact model: the key
    pins the version current at its creation, `Orriven-Version: YYYY-MM-DD`
    overrides per request, and every response echoes the effective version.
servers:
  - url: https://openapi.orriven.com/storefront
    description: Production
  - url: http://localhost:3002/storefront
    description: Local development
security:
  - publishableKey: []
paths:
  /v1/events/{publicId}:
    get:
      tags:
        - Catalog
      summary: Get the event catalog
      description: >-
        Everything a buyer-facing page needs: ticket types (soldOut is a
        boolean, never a count), add-ons, bundles, the open agenda, speakers,
        and the published registration forms the types ask. A draft or foreign
        event answers 404 — indistinguishable from a nonexistent one.
      parameters:
        - schema:
            type: string
          required: true
          name: publicId
          in: path
      responses:
        '200':
          description: The event's public catalog.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StorefrontCatalog'
        '401':
          description: >-
            Missing, unknown, revoked or expired API key — all indistinguishable
            on purpose.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RpcStatus'
        '404':
          description: >-
            The resource does not exist in this key's business unit. A foreign
            id answers the same way.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RpcStatus'
        '429':
          description: Rate limit exceeded for this API key.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RpcStatus'
components:
  schemas:
    StorefrontCatalog:
      type: object
      properties:
        event:
          $ref: '#/components/schemas/StorefrontEvent'
        speakers:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              title:
                type:
                  - string
                  - 'null'
              bio:
                type:
                  - string
                  - 'null'
            required:
              - id
              - name
              - title
              - bio
        agenda:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              title:
                type: string
              description:
                type:
                  - string
                  - 'null'
              venue:
                type:
                  - string
                  - 'null'
              startsAt:
                type: string
              endsAt:
                type:
                  - string
                  - 'null'
            required:
              - id
              - title
              - description
              - venue
              - startsAt
              - endsAt
        ticketTypes:
          type: array
          items:
            $ref: '#/components/schemas/StorefrontTicketType'
        upcomingTicketTypes:
          type: array
          items:
            $ref: '#/components/schemas/StorefrontUpcomingTicketType'
        addons:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              description:
                type:
                  - string
                  - 'null'
              priceAmount:
                type: integer
              perks:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                    description:
                      type:
                        - string
                        - 'null'
                  required:
                    - name
                    - description
            required:
              - id
              - name
              - description
              - priceAmount
              - perks
        bundles:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              name:
                type: string
              description:
                type:
                  - string
                  - 'null'
              priceAmount:
                type: integer
              items:
                type: array
                items:
                  type: object
                  properties:
                    name:
                      type: string
                    quantity:
                      type: integer
                  required:
                    - name
                    - quantity
            required:
              - id
              - name
              - description
              - priceAmount
              - items
        registrationClosed:
          type: boolean
        paymentsEnabled:
          type: boolean
        forms:
          type: array
          items:
            type: object
            properties:
              id:
                type: string
              questions: {}
            required:
              - id
      required:
        - event
        - speakers
        - agenda
        - ticketTypes
        - upcomingTicketTypes
        - addons
        - bundles
        - registrationClosed
        - paymentsEnabled
        - forms
    RpcStatus:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: integer
              example: 404
            status:
              type: string
              example: NOT_FOUND
            message:
              type: string
              example: Event not found.
            details:
              type: array
              items: {}
          required:
            - code
            - status
            - message
      required:
        - error
    StorefrontEvent:
      type: object
      properties:
        publicId:
          type: string
        name:
          type: string
        startsAt:
          type:
            - string
            - 'null'
        endsAt:
          type:
            - string
            - 'null'
        timezone:
          type: string
        currency:
          type: string
        themeSource:
          type: string
      required:
        - publicId
        - name
        - startsAt
        - endsAt
        - timezone
        - currency
        - themeSource
    StorefrontTicketType:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type:
            - string
            - 'null'
        soldOut:
          type: boolean
        waitlistOpen:
          type: boolean
        opensAt:
          type:
            - string
            - 'null'
        closesAt:
          type:
            - string
            - 'null'
        priceAmount:
          type: integer
        perks:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              description:
                type:
                  - string
                  - 'null'
            required:
              - name
              - description
        formId:
          type:
            - string
            - 'null'
      required:
        - id
        - name
        - description
        - soldOut
        - waitlistOpen
        - opensAt
        - closesAt
        - priceAmount
        - perks
        - formId
    StorefrontUpcomingTicketType:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        description:
          type:
            - string
            - 'null'
        priceAmount:
          type: integer
        opensAt:
          type: string
        closesAt:
          type:
            - string
            - 'null'
        perks:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              description:
                type:
                  - string
                  - 'null'
            required:
              - name
              - description
      required:
        - id
        - name
        - description
        - priceAmount
        - opensAt
        - closesAt
        - perks
  securitySchemes:
    publishableKey:
      type: http
      scheme: bearer
      description: >-
        The publishable key (`opk_…`) — safe to embed in your frontend. Created
        per portal in the console, with the origins allowed to use it from a
        browser.

````