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

# Get a participant by email

> Look up one participant by email address. The match is exact and
case-insensitive. Returns the participant, or `404` when no contact
with that address holds a session role on the event.

Search on this API is a `POST`, so a `GET` on the collection path is
free for the lookup — no `/by-email` sub-path is needed. `email` is
required; a bare `GET /participants` is a `400`, not an unpaginated
list.

Contacts are not unique by email. If more than one contact on the
event shares the address, the earliest-created one is returned; use
`POST /v1/event/{eventId}/participants` with the `email` filter to see
them all.




## OpenAPI

````yaml /api-reference/openapi.yaml get /v1/event/{eventId}/participants
openapi: 3.1.0
info:
  title: Sessionboard Public API
  version: '1.0'
  description: >-
    REST API for managing sessions, speakers, contacts, sponsors, exhibitors,
    and event data on the Sessionboard platform.
  contact:
    name: Sessionboard Support
    email: support@sessionboard.com
  termsOfService: https://www.sessionboard.com/legal/terms-of-service
servers:
  - url: https://public-api.sessionboard.com
    description: US Region
  - url: https://public-api-eu.sessionboard.com
    description: EU Region
security:
  - ApiKey: []
  - BearerToken: []
tags:
  - name: Events
    description: Manage events on the platform.
  - name: Sessions
    description: Search and retrieve sessions within an event.
  - name: Session Writes
    description: >-
      Create, update, delete, and restore sessions. Requires the
      `write:sessions` scope.
  - name: Contact Writes
    description: >-
      Create, update, delete, and restore contacts. Requires the
      `write:contacts` scope.
  - name: Exhibitor Writes
    description: >-
      Create, update, delete, and restore exhibitors. Requires the
      `write:exhibitors` scope.
  - name: Sponsor Writes
    description: >-
      Create, update, delete, and restore sponsors. Requires the
      `write:sponsors` scope.
  - name: Field Writes
    description: >-
      Create, update, and delete custom fields. Requires the `write:fields`
      scope.
  - name: Speakers
    description: Search and retrieve speakers within an event.
  - name: Participants
    description: |
      Search and retrieve every contact holding a session role on an event —
      speakers, chairpersons, moderators and custom roles — with the roles
      each one holds, and list the event's participant roles.
  - name: Contacts
    description: Search and retrieve contacts at the organization or event level.
  - name: Sponsors
    description: Search and retrieve sponsors within an event.
  - name: Exhibitors
    description: Search and retrieve exhibitors within an event.
  - name: Event Settings
    description: >-
      Retrieve event configuration such as fields, tags, tracks, rooms, formats,
      levels, languages, and session statuses.
  - name: GDPR
    description: Manage GDPR data access and erasure requests.
  - name: Insights
    description: >-
      Query event data using SbQL, generate queries with AI, and manage
      dashboards.
  - name: Metadata Writes
    description: >-
      Create, update, and delete session metadata (rooms, tracks, tags, formats,
      levels, languages, statuses). Requires the `write:metadata` scope.
  - name: Agenda Planning
    description: >-
      Manage agenda drafts, draft sessions, scheduling rules, and evaluation
      personas. Requires the `write:events` scope.
  - name: Dashboards & Widgets
    description: >-
      Create, read, update, and delete dashboards and widgets at the event or
      organization level. Requires `write:events` scope for writes.
  - name: Reports & Queries
    description: >-
      Create, read, update, delete, and run saved SbQL queries/reports at the
      event or organization level. Requires `write:events` scope for writes.
  - name: Transcriptions
    description: >-
      Transcript text on sessions — fragments, summaries, insights, and
      translations. Requires `read:transcriptions` / `write:transcriptions`
      scopes.
  - name: Session Recordings
    description: >-
      Session audio files for recording archives (live capture or imported
      audio). Requires `read:transcriptions` / `write:transcriptions` scopes.
  - name: Media
    description: >-
      Upload video or audio files for automatic transcription. Requires
      `read:media` / `write:media` scopes.
  - name: Session Files
    description: >
      Documents attached to sessions (PDFs, PowerPoint, Word, images, and
      similar).

      Simple upload: `POST .../files/upload` (multipart, max 50 MB).

      Direct-to-storage: create → PUT → complete (max 500 MB).

      Requires `read:sessions` / `write:sessions` scopes.

      See the [Uploading session files](/guides/uploading-session-files) guide.
  - name: OAuth
    description: >-
      OAuth 2.1 endpoints for AI client authorization (Claude, ChatGPT). Mounted
      at `/oauth/` (not `/v1/`).
paths:
  /v1/event/{eventId}/participants:
    get:
      tags:
        - Participants
      summary: Get a participant by email
      description: |
        Look up one participant by email address. The match is exact and
        case-insensitive. Returns the participant, or `404` when no contact
        with that address holds a session role on the event.

        Search on this API is a `POST`, so a `GET` on the collection path is
        free for the lookup — no `/by-email` sub-path is needed. `email` is
        required; a bare `GET /participants` is a `400`, not an unpaginated
        list.

        Contacts are not unique by email. If more than one contact on the
        event shares the address, the earliest-created one is returned; use
        `POST /v1/event/{eventId}/participants` with the `email` filter to see
        them all.
      operationId: get-participant-by-email
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: integer
          description: The event ID.
        - name: email
          in: query
          required: true
          schema:
            type: string
            format: email
          description: The contact's email address. Matched exactly, ignoring case.
        - $ref: '#/components/parameters/Expand'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Participant'
        '400':
          description: '`email` is missing or empty.'
        '401':
          description: Unauthorized
        '404':
          description: Event not found, or no participant with that email on the event.
components:
  parameters:
    Expand:
      name: expand
      in: query
      required: false
      schema:
        type: array
        items:
          type: string
          enum:
            - translated_fields
            - subsession_details
            - linked_sources
            - composition
      description: >
        Expand records with additional data.


        Possible values:

        - `translated_fields` — includes the `translated_fields` array on
        records when the event has language variants configured.

        - `subsession_details` — applies to session responses. Each subsession
        inside `parent.subsessions[]` is returned with full parent-session field
        parity (`status`, `custom_status`, `custom_fields`, `chairpersons`,
        `moderators`, `sponsors`, `exhibitors`, `tags`, `language`, `track`,
        `level`, `room`, `is_public`, `external_url`, `client_session_id`,
        `ceu_credits`, `capacity`, `source`) instead of the default minimal
        shape. Subsessions inherit `is_abstract`, `composition_status`, and
        optional `composition` from the parent. Not required when calling `GET
        /v1/event/{eventId}/sessions/{sessionId}` with a subsession UUID — that
        endpoint always returns the full shape at the top level.

        - `linked_sources` — include sessions that are linked as composition
        sources (excluded from list/search results by default).

        - `composition` — attach a full `composition` object with target and
        source details on each returned session. Recommended for single-session
        GET; use cautiously on broad searches.


        A single value can be passed directly, and multiple values repeat

        the parameter — all of these are accepted:

        - `?expand=composition`

        - `?expand=translated_fields&expand=composition`

        - `?expand[]=translated_fields&expand[]=composition`
  schemas:
    Participant:
      allOf:
        - $ref: '#/components/schemas/Contact'
        - type: object
          description: |
            A contact holding at least one session role on the event. Every
            `Contact` field is present with the same values `POST /speakers`
            returns; `roles` is appended after them.
          required:
            - roles
          properties:
            roles:
              type: array
              description: |
                Every role the contact holds on the event and the sessions it
                holds each one on. Always the contact's complete set — not
                narrowed by the request filters. Ordered by the role's
                configured sort order.
              items:
                $ref: '#/components/schemas/ParticipantRoleAssignment'
      examples:
        - id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
          friendly_id: SPK-42
          full_name: Dr. Jane Smith
          first_name: Jane
          last_name: Smith
          email: jane.smith@university.edu
          created_at: '2023-11-01T10:00:00Z'
          updated_at: '2024-02-15T16:30:00Z'
          company_name: State University
          title: Professor of Computer Science
          custom_fields: []
          roles:
            - roleId: 84bd12e5-d5ec-4c64-a604-4051e06c8dc2
              roleName: Speaker
              slug: speaker
              coreRole: speaker
              isCustom: false
              sessionIds:
                - 04efb360-2b15-44db-b639-4035fae2772c
            - roleId: 4efeb845-050f-4002-9496-cb586cdf10f2
              roleName: Moderator
              slug: moderator
              coreRole: moderator
              isCustom: false
              sessionIds:
                - 26e465fc-1fb1-4c04-af52-f4d6314dfca4
            - roleId: 52d60237-19db-4bda-a116-8b9fcb6750e9
              roleName: Panelist
              slug: panelist
              coreRole: speaker
              isCustom: true
              sessionIds:
                - 140b8e82-41ca-444e-82ab-f7dd1011e95b
                - 2c198cce-adff-4fb2-81e1-319b601d564b
    Contact:
      type: object
      description: >-
        A contact (speaker, attendee, or organizational contact) in
        Sessionboard.
      properties:
        id:
          type: string
        friendly_id:
          type: string
        full_name:
          type: string
        first_name:
          type: string
        last_name:
          type: string
        email:
          type: string
        created_at:
          type: string
        updated_at:
          type: string
        photo_url:
          type: string
        company_name:
          type: string
        title:
          type: string
        about:
          type: string
        phone_home:
          type: string
        phone_mobile:
          type: string
        address_line_1:
          type: string
        address_line_2:
          type: string
        address_city:
          type: string
        address_state:
          type: string
        address_postal_code:
          type: string
        address_country:
          type: string
        website_url:
          type: string
        linkedin_url:
          type: string
        twitter_url:
          type: string
        facebook_url:
          type: string
        honorific:
          type: string
        salutation:
          type: string
        pronouns:
          type: string
        gender:
          type: string
        past_companies:
          type: string
        educational_affiliation:
          type: string
        highest_level_of_education:
          type: string
        ethnicity:
          type: string
        languages:
          type: string
        speaker_score:
          type: string
        organization_contact:
          type: string
        speaker_fee:
          type: string
        availability:
          type: string
        preferred_session_format:
          type: string
        annual_revenue:
          type: string
        headcount:
          type: string
        years_in_operation:
          type: string
        organization_structure:
          type: string
        industry:
          type: string
        global_region:
          type: string
        audience_type:
          type: string
        target_age_range:
          type: string
        topic_expertise:
          type: string
        brand:
          type: string
        translated_fields:
          type: array
          items:
            $ref: '#/components/schemas/TranslatedField'
        custom_fields:
          type: array
          items:
            $ref: '#/components/schemas/CustomFieldValue'
        admin_url:
          type: string
          format: uri
          nullable: true
          description: Deep link to this entity in the Sessionboard admin UI.
      examples:
        - id: a1b2c3d4-e5f6-7890-abcd-ef1234567890
          friendly_id: SPK-42
          full_name: Dr. Jane Smith
          first_name: Jane
          last_name: Smith
          email: jane.smith@university.edu
          created_at: '2023-11-01T10:00:00Z'
          updated_at: '2024-02-15T16:30:00Z'
          photo_url: https://cdn.sessionboard.com/photos/jane-smith.jpg
          company_name: State University
          title: Professor of Computer Science
          about: Dr. Smith is a leading researcher in distributed systems.
          address_city: Austin
          address_state: TX
          address_country: US
          honorific: Dr.
          pronouns: she/her
          topic_expertise: Distributed Systems, Cloud Computing
          custom_fields: []
          translated_fields: []
    ParticipantRoleAssignment:
      type: object
      description: |
        One role a participant holds on the event, with the sessions it holds
        it on. Returned inside `Participant.roles`.
      required:
        - roleId
        - roleName
        - slug
        - coreRole
        - isCustom
        - sessionIds
      properties:
        roleId:
          type:
            - string
            - 'null'
          format: uuid
          description: |
            The role's id — the value to pass in the `roleIds` filter and the
            `id` returned by `GET /v1/event/{eventId}/participant-roles`.
            `null` only for a standard role on an event whose roles have not
            been created yet (see the endpoint description).
        roleName:
          type: string
          description: Display name of the role (singular), e.g. `Speaker`, `Panelist`.
        slug:
          type: string
          description: Stable programmatic identifier for the role within the event.
        coreRole:
          type: string
          enum:
            - speaker
            - chairperson
            - moderator
          description: The standard category the role maps to. Not a display label.
        isCustom:
          type: boolean
          description: >-
            `true` for a role the organizer added; `false` for Speaker,
            Chairperson and Moderator.
        sessionIds:
          type: array
          items:
            type: string
            format: uuid
          description: >-
            Ids of the sessions (including subsessions) on which the contact
            holds this role.
    TranslatedField:
      type: object
      description: A translated version of a field value.
      properties:
        id:
          type: string
        name:
          type: string
        type:
          type: string
        parent_field_id:
          type: string
        parent_field_source:
          type: string
        parent_field_name:
          type: string
        parent_field_internal_name:
          type: string
        translated_language:
          type: string
        value:
          type: string
    CustomFieldValue:
      type: object
      description: A custom field value attached to a record.
      properties:
        id:
          type: string
        name:
          type: string
        value:
          type:
            - string
            - boolean
            - 'null'
          description: |
            The formatted field value, or `null` when the field is empty.
            Numeric field types (`number`, `currency`, `percent`, `quantity`,
            `formula`) serialize a stored zero as its formatted value (for
            example `"0"`) — `null` means the field has no value, not that
            the value is zero.

            `checkbox` fields serialize as the strings `"Yes"` (checked) and
            `"No"` (explicitly unchecked); a checkbox that was never set is
            `null`. Writes take boolean `true` / `false`.

            `datetime` fields serialize as ISO 8601. On event custom fields
            (`GET /v1/events?expand=custom_fields`) the value is event-local
            time with the event's UTC offset (for example
            `2026-08-15T09:00:00-03:00`), falling back to the raw UTC
            instant (`2026-08-15T12:00:00.000Z`) when the event has no valid
            timezone. On session, speaker, sponsor, and exhibitor custom
            fields the value is the raw UTC instant. Date-only fields are
            unaffected.
        type:
          type: string
        internal_name:
          type: string
        created_at:
          type: string
  securitySchemes:
    ApiKey:
      type: apiKey
      in: header
      name: x-access-token
      description: >-
        Organization API token. Generate from Organization Settings → API
        Tokens.
    BearerToken:
      type: http
      scheme: bearer
      description: >-
        OAuth 2.1 access token. Obtained via the OAuth PKCE flow at
        `/oauth/token`.

````