> ## 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 organizations

> Lists the organizations the API key may sell for. The key itself is the scope: a key that covers no organization answers an empty page. Ordered by id so paging is deterministic.



## OpenAPI

````yaml get /resellers/v2/organizations
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/organizations:
    get:
      tags:
        - V2
      summary: List reseller organizations
      description: >-
        Lists the organizations the API key may sell for. The key itself is the
        scope: a key that covers no organization answers an empty page. Ordered
        by id so paging is deterministic.
      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.
      responses:
        '200':
          description: Page of organizations
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Organization'
                  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
        '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:
    Organization:
      type: object
      properties:
        _id:
          type: string
          example: abcdefghijk1234567890
        name:
          type: string
          example: Ginger Klub
        slug:
          type: string
          example: ginger-klub
        logo_url:
          type: string
          example: https://cdn.fourvenues.com/ginger-klub/logo.png
        flyer_url:
          type: string
          example: https://cdn.fourvenues.com/ginger-klub/cover.jpg
        currency:
          type: string
          example: EUR
        created_at:
          type: string
          format: date-time
          example: '2023-11-02T09:14:31.000Z'
  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.

````