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

# Get Profile Details

> Retrieves detailed information about a specific profile, including certifications, education, and work history. **This endpoint does not include smart match results.**




## OpenAPI

````yaml get /profiles/{publicIdentifier}
openapi: 3.0.3
info:
  title: Profile API
  version: 1.0.0
  description: >
    ## Profile API

    This API allows organisations to retrieve profile details for a user.


    - `GET /profiles/{publicIdentifier}` retrieves the profile details,
    including work experience, education, and certifications, **but without
    smart match data**.


    ### Base URL

    The API is hosted at:

    `https://api.ever.day`


    ### API Key Authentication

    To authenticate requests, include your API key in the `x-api-key` header of
    every request.
servers:
  - url: https://api.ever.day
security: []
paths:
  /profiles/{publicIdentifier}:
    get:
      summary: Get Profile Details
      description: >
        Retrieves detailed information about a specific profile, including
        certifications, education, and work history. **This endpoint does not
        include smart match results.**
      parameters:
        - name: publicIdentifier
          in: path
          required: true
          schema:
            type: string
          description: The unique identifier of the profile.
      responses:
        '200':
          description: Profile details retrieved successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Profile'
        '401':
          description: Unauthorized. API key is missing or invalid.
        '404':
          description: Profile not found.
        '500':
          description: Internal server error.
      security:
        - apiKeyAuth: []
components:
  schemas:
    Profile:
      type: object
      properties:
        id:
          type: string
          description: The unique identifier of the profile.
          example: abc123
        email:
          type: string
          description: The user's email address.
          example: user@example.com
        publicIdentifier:
          type: string
          description: A unique public identifier for the user.
          example: john-doe-1234
        firstName:
          type: string
          description: The user's first name.
          example: John
        lastName:
          type: string
          description: The user's last name.
          example: Doe
        fullName:
          type: string
          description: The user's full name.
          example: John Doe
        certifications:
          type: array
          description: List of certifications obtained by the user.
          items:
            $ref: '#/components/schemas/Certification'
        educations:
          type: array
          description: List of educational backgrounds.
          items:
            $ref: '#/components/schemas/Education'
        workHistory:
          type: array
          description: Work experience history.
          items:
            $ref: '#/components/schemas/WorkExperience'
    Certification:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        authority:
          type: string
        field:
          type: string
        description:
          type: string
        date:
          type: string
          format: date-time
    Education:
      type: object
      properties:
        id:
          type: string
        degree:
          type: string
        school:
          type: string
        field:
          type: string
        grade:
          type: string
        startDate:
          type: string
          format: date-time
        endDate:
          type: string
          format: date-time
        finished:
          type: boolean
        description:
          type: string
    WorkExperience:
      type: object
      properties:
        id:
          type: string
        startDate:
          type: string
          format: date-time
        endDate:
          type: string
          format: date-time
        occupation:
          type: string
        company:
          type: string
        description:
          type: string
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >
        Include your API key in the `x-api-key` header to authenticate requests.
        Each organisation is provided with a unique API key. If your key is lost
        or compromised, contact support to request a new one.

````