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

# Get hosts

> Returns the brand's hosts - the people who lead its experiences.



## OpenAPI

````yaml get /v1/hosts
openapi: 3.0.0
info:
  title: Way Partner API
  description: >-
    REST API for Way partners: list experiences, check availability, run
    checkout, and manage bookings.
  version: '1.0'
servers:
  - url: https://api.letsway.com
    description: Production.
  - url: https://api.staging.letsway.com
    description: Staging.
security: []
tags:
  - name: Listings
    description: 'Retrieve the listings a brand offers: experiences, events, and resources.'
  - name: Availability
    description: Dates, sessions, and price tiers for scheduling a booking.
  - name: Carts & Checkout
    description: >-
      Payment intents and booking creation. The cart ID is a client-generated
      UUID; there is no create-cart endpoint.
  - name: Bookings
    description: Retrieve, cancel, and reschedule bookings.
  - name: Experiences
    description: Experience details, settings, custom questions, reviews, and hosts.
  - name: Brand Configuration
    description: Brand settings, taxonomy, terms, and promotion code validation.
  - name: Waitlists
    description: Waitlists for sold-out sessions and invitation handling.
  - name: Integrations
    description: Configured integrations, analytics, and room-charge validation.
  - name: Organizations
    description: Organization-level access across brands.
paths:
  /v1/hosts:
    get:
      tags:
        - Experiences
      summary: Get hosts
      description: Returns the brand's hosts - the people who lead its experiences.
      operationId: HostPublicController_getHosts
      parameters: []
      responses:
        '200':
          description: Get hosts.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemsHostDto'
              example:
                items:
                  - id: 92256b75-598c-4c14-a9b2-78ec7d31a18e
                    firstName: Jordan
                    lastName: Jones
                    profilePicture: null
                    emailAddress: alice@example.com
                    description: null
                  - id: 267b6e68-04c6-4a20-a8b1-77cf97fc631e
                    firstName: Riley
                    lastName: Lee
                    profilePicture: null
                    emailAddress: alice@example.com
                    description: ''
      security:
        - Brand-API-Key: []
components:
  schemas:
    ItemsHostDto:
      type: object
      properties:
        items:
          description: List of items.
          type: array
          items:
            $ref: '#/components/schemas/HostDto'
      required:
        - items
    HostDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the host.
          example: host-123
        description:
          type: object
          description: The description of the host.
          example: Experienced tour guide
          nullable: true
        profilePicture:
          description: Profile picture of the host.
          nullable: true
          allOf:
            - $ref: '#/components/schemas/ProfilePictureDto'
        firstName:
          type: string
          description: First name of the host.
          example: John
        lastName:
          type: string
          description: Last name of the host.
          example: Doe
        emailAddress:
          type: string
          description: Email address of the host.
          example: john.doe@example.com
      required:
        - id
        - firstName
        - lastName
        - emailAddress
    ProfilePictureDto:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the profile picture.
          example: media-123
        uri:
          type: object
          description: Profile picture URIs for different resolutions.
          example:
            original: https://example.com/original.jpg
            48w: https://example.com/48w.jpg
            256w: https://example.com/256w.jpg
      required:
        - id
        - uri
  securitySchemes:
    Brand-API-Key:
      type: http
      scheme: bearer
      description: >-
        Your brand's secret API key, e.g. `Bearer
        way_sk_live_bhEqcn0i1fRoUEHBPjJkQA`. Older `Way-Brand-Id` +
        `Way-Secret-Key` credentials still work: see [Legacy
        authentication](/legacy-authentication).

````