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

# GET /consumers/me

> Get current authenticated consumer with active memberships



## OpenAPI

````yaml /api/openapi/consumer-api.json get /consumers/me
openapi: 3.1.0
info:
  description: Consumer API for Fanfare
  title: Fanfare Consumer API
  version: 1.0.0
servers:
  - description: Production
    url: https://consumer.fanfare.io/api
  - description: Local development
    url: http://localhost:4802
security: []
paths:
  /consumers/me:
    get:
      tags:
        - Consumers
      description: Get current authenticated consumer with active memberships
      operationId: getConsumersMe
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  active:
                    properties:
                      journeys:
                        items:
                          properties:
                            admission:
                              properties:
                                admissionGrant:
                                  type: string
                                admittedAt:
                                  format: date-time
                                  type: string
                                distributionId:
                                  type: string
                                distributionType:
                                  anyOf:
                                    - const: queue
                                    - const: draw
                                    - const: auction
                                    - const: timed_release
                                experienceId:
                                  type: string
                                expiresAt:
                                  format: date-time
                                  type: string
                                sequenceId:
                                  type: string
                              required:
                                - distributionType
                                - distributionId
                                - experienceId
                                - sequenceId
                                - admissionGrant
                                - admittedAt
                              type: object
                            experienceId:
                              type: string
                            journeyStage:
                              anyOf:
                                - const: ready
                                - const: routed
                                - const: admitted
                                - const: denied
                            participation:
                              properties:
                                admissionGrant:
                                  type: string
                                id:
                                  type: string
                                status:
                                  type: string
                                type:
                                  anyOf:
                                    - const: waitlist
                                    - const: queue
                                    - const: draw
                                    - const: auction
                                    - const: timed_release
                              required:
                                - type
                                - id
                                - status
                              type: object
                            sequenceId:
                              type: string
                            sequenceStage:
                              anyOf:
                                - const: no_sequence
                                - const: upcoming
                                - const: waitlist_entered
                                - const: active
                                - const: participating
                                - const: admitted
                                - const: denied
                          required:
                            - experienceId
                            - journeyStage
                            - sequenceStage
                          type: object
                        type: array
                    required:
                      - journeys
                    type: object
                  activityRank:
                    default: 0
                    maximum: 5
                    minimum: 0
                    type: integer
                  activityScore:
                    default: 0
                    type: number
                  activityScoreUpdatedAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  aov:
                    default: '0'
                    pattern: ^\d{1,12}(\.\d{1,8})?$
                    type: string
                  email:
                    anyOf:
                      - format: email
                        type: string
                      - type: 'null'
                  engagedCount:
                    default: 0
                    type: number
                  fullName:
                    anyOf:
                      - type: string
                      - type: 'null'
                  id:
                    format: uuid
                    type: string
                  lastEngagedAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  lastGeoAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  lastGeoCity:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastGeoCoordinates:
                    anyOf:
                      - properties:
                          latitude:
                            type: number
                          longitude:
                            type: number
                        required:
                          - latitude
                          - longitude
                        type: object
                      - type: 'null'
                  lastGeoCountry:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastGeoPostalCode:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastGeoRegion:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastGeoSource:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastGeoTimezone:
                    anyOf:
                      - type: string
                      - type: 'null'
                  lastOrderAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  lastReturnAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  loyaltyBalance:
                    default: 0
                    type: number
                  ltv:
                    default: '0'
                    pattern: ^\d{1,12}(\.\d{1,8})?$
                    type: string
                  monetaryRank:
                    default: 0
                    maximum: 5
                    minimum: 0
                    type: integer
                  monetaryScore:
                    default: 0
                    type: number
                  monetaryScoreUpdatedAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  phone:
                    anyOf:
                      - type: string
                      - type: 'null'
                  primaryExternalId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  primaryLastSyncedAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  primarySourceVendor:
                    anyOf:
                      - type: string
                      - type: 'null'
                  primarySyncSourceId:
                    anyOf:
                      - type: string
                      - type: 'null'
                  purchaseFrequencyRank:
                    default: 0
                    maximum: 5
                    minimum: 0
                    type: integer
                  purchaseFrequencyScore:
                    default: 0
                    type: number
                  purchaseFrequencyScoreUpdatedAt:
                    anyOf:
                      - format: date-time
                        type: string
                      - type: 'null'
                  smsOptOut:
                    default: false
                    type: boolean
                  totalEngagements:
                    default: 0
                    type: number
                  totalMessages:
                    default: 0
                    type: number
                  totalOrders:
                    default: 0
                    type: number
                  totalReturns:
                    default: 0
                    type: number
                required:
                  - id
                  - active
                type: object
          description: Consumer retrieved successfully
        '400':
          content:
            application/json:
              schema:
                properties:
                  error:
                    const: validation_error
                  issues:
                    items:
                      properties:
                        expected:
                          type: string
                        kind:
                          type: string
                        message:
                          type: string
                        path:
                          items:
                            properties:
                              input: {}
                              key:
                                type: string
                              origin:
                                type: string
                              type:
                                type: string
                            required:
                              - type
                              - origin
                              - input
                              - key
                            type: object
                          type: array
                        received:
                          type: string
                        type:
                          type: string
                      required:
                        - kind
                        - type
                        - expected
                        - received
                        - message
                        - path
                      type: object
                    type: array
                required:
                  - error
                  - issues
                type: object
          description: Bad Request - Invalid input schema
        '401':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Unauthorized - Authentication required
        '403':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Forbidden - User must be authenticated
        '500':
          content:
            application/json:
              schema:
                properties:
                  error:
                    type: string
                required:
                  - error
                type: object
          description: Internal server error

````