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

# Retrieve an account's profile

> Returns the account profile data.



## OpenAPI

````yaml get /accounts/profile
openapi: 3.1.0
info:
  title: OwnID API
  version: 1.0.0
  description: Server API for integrating with the OwnID
servers:
  - url: https://server.ownid.com/{appId}
security:
  - AdminAccessToken: []
paths:
  /accounts/profile:
    get:
      tags:
        - Profile
      summary: Retrieve an account's profile
      description: Returns the account profile data.
      operationId: getProfile
      responses:
        '200':
          description: Successfully retrieved account data.
          content:
            application/json:
              schema:
                type: object
                additionalProperties: true
              examples:
                BasicProfile:
                  $ref: '#/components/examples/BasicProfile'
        '404':
          description: Account does not exist.
components:
  examples:
    BasicProfile:
      summary: A simple account profile
      value:
        firstName: Sassi
        lastName: Keshet
  securitySchemes:
    AdminAccessToken:
      type: http
      scheme: bearer
      bearerFormat: JWT

````