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

# List reseller events

> Lists the sellable events of the organizations the API key covers: active, visible, not cancelled, not private and not yet ended. Ordered by start date, ascending.



## OpenAPI

````yaml get /resellers/v2/events
openapi: 3.0.0
info:
  title: Reseller API
  version: 1.0.0
  description: >-
    Reseller API. Version 1 validates and swaps a ticket from its barcode.
    Version 2 exposes the catalogue a reseller needs to sell: the organizations
    its key covers, their sellable events with ticket rates and stock, and the
    tickets of a given buyer.
servers:
  - url: https://api-alpha.fourvenues.com
    description: Alpha
  - url: https://api.fourvenues.com
    description: Production
security: []
paths:
  /resellers/v2/events:
    get:
      tags:
        - V2
      summary: List reseller events
      description: >-
        Lists the sellable events of the organizations the API key covers:
        active, visible, not cancelled, not private and not yet ended. Ordered
        by start date, ascending.
      parameters:
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
            default: 50
          description: Page size.
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
            default: 0
          description: Number of items skipped before the page.
        - name: organization_id
          in: query
          required: false
          schema:
            type: string
          example: abcdefghijk1234567890,bcdefghijk12345678901
          description: >-
            Comma-separated organization ids to narrow the listing to. Every id
            must be covered by the API key, or the request is rejected with
            `ORGANIZATION_NOT_ALLOWED`. Omit it to list every organization the
            key covers.
        - name: starts_after
          in: query
          required: false
          schema:
            type: string
          example: '2026-10-01'
          description: >-
            Lower bound on when the event starts. Either a bare date, read as
            midnight UTC, or an ISO 8601 date-time carrying its own zone
            (`2026-10-01T20:00:00+02:00`). A date-time without a zone is
            rejected. Asking for October returns the events that begin in
            October, including those ending at dawn the next day; a season pass
            that started last year stays out.
        - name: starts_before
          in: query
          required: false
          schema:
            type: string
          example: '2026-10-31'
          description: >-
            Upper bound on when the event starts, same format as `starts_after`.
            Events that already ended stay out of the listing regardless of this
            window.
      responses:
        '200':
          description: Page of events
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Event'
                  has_more:
                    type: boolean
                    example: true
                    description: Whether another page exists after this one.
                  success:
                    type: boolean
                    example: true
        '400':
          description: The query parameters did not validate
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: VALIDATION_ERROR
        '401':
          description: Missing or invalid API key
          content:
            application/json:
              schema:
                type: object
                properties:
                  valid:
                    type: boolean
                    example: false
                  swappable:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: UNAUTHORIZED
        '403':
          description: The API key does not cover the requested organization
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: ORGANIZATION_NOT_ALLOWED
        '500':
          description: Unexpected error
          content:
            application/json:
              schema:
                type: object
                properties:
                  success:
                    type: boolean
                    example: false
                  error:
                    type: string
                    example: INTERNAL_ERROR
      security:
        - ApiKeyAuth: []
components:
  schemas:
    Event:
      type: object
      properties:
        _id:
          type: string
          example: abcdefghijk1234567890
        name:
          type: string
          example: Saturdays at Ginger Klub
        description:
          type: string
          example: Resident DJs every Saturday night.
        display_date:
          type: string
          format: date-time
          example: '2026-10-03T22:00:00.000Z'
          description: Date the event is advertised under.
        start_date:
          type: string
          format: date-time
          example: '2026-10-03T22:00:00.000Z'
        end_date:
          type: string
          format: date-time
          example: '2026-10-04T05:30:00.000Z'
        currency:
          type: string
          example: EUR
        image_url:
          type: string
          example: https://cdn.fourvenues.com/ginger-klub/saturdays.jpg
        organization_id:
          type: string
          example: abcdefghijk1234567890
        location:
          $ref: '#/components/schemas/Location'
    Location:
      type: object
      nullable: true
      properties:
        name:
          type: string
          example: Ginger Klub
        address:
          type: string
          example: Carrer de Balmes 23
        full_address:
          type: string
          example: Carrer de Balmes 23, 08007 Barcelona, Spain
        city:
          type: string
          example: Barcelona
        country:
          type: string
          example: ES
        timezone:
          type: string
          example: Europe/Madrid
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Reseller API key, sent raw in the `Authorization` header:
        `Authorization: rs_live_xxxxxxxxxxxxxxxx`. Keys prefixed `rs_test_`
        operate against the test environment. The same key serves v2 and the
        swap operations, and it only reaches the organizations Fourvenues
        authorized on it.

````