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

# Get information from token

> Getting all information about the used token and the connected user, installation and license details



## OpenAPI

````yaml /openapi.yaml get /me
openapi: 3.1.1
info:
  title: MijnKlantportaal API
  version: v1
servers:
  - url: https://api.mijnklantportaal.nl/v1
security:
  - APIKey: []
tags:
  - name: Agreements API
  - name: Appointments API
  - name: Customers API
  - name: Customer Groups API
  - name: Customer Invoices API
  - name: Customer Offers API
  - name: Customer Subscriptions API
  - name: Customer Subscription Packages API
  - name: Files API
  - name: File Request API
  - name: File Share API
  - name: Invoices API
  - name: Me API
  - name: Payment Links API
  - name: Punch Cards API
  - name: Tickets API
  - name: Webhooks API
paths:
  /me:
    get:
      tags:
        - Me API
      summary: Get information from token
      description: >-
        Getting all information about the used token and the connected user,
        installation and license details
      operationId: get-me
      responses:
        '200':
          description: Paginated response with payment links
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MeInfo'
components:
  schemas:
    MeInfo:
      type: object
      description: Me information
      properties:
        user:
          type: object
          description: User details about the authenticated user
          properties:
            firstName:
              type: string
              description: First name of the authenticated user
              example: John
            lastName:
              type: string
              description: Last name of the authenticated user
              example: Doe
            email:
              type: string
              description: Email address of the authenticated user
              example: john@doe.com
        portal:
          type: object
          description: Details about the customer portal of the user
          properties:
            mkpDomain:
              type: string
              description: Unique identifier for the portal on the MijnKlantportaal portal
              example: myportal
            customerDomain:
              type: string
              description: URL on which the portal can be reached
              example: https://myportal.mijnklantportaal.nl
        license:
          type: object
          description: Information about the current license
          properties:
            currentLicense:
              type: string
              description: Name of the plan which is active in the current license
              example: Business
            licenseFee:
              type: object
              description: The pricing information of the current license
              properties:
                currency:
                  type: string
                  description: Currency of the fee which will be charged
                  example: EUR
                amount:
                  type: string
                  description: Amount, written as string
                  example: '17.99'
                period:
                  type: string
                  description: >-
                    Interval in which the license will be charged. Can be
                    `monthly` or `yearly`
                  example: monthly
            nextRenewal:
              type: string
              description: Date of the next renewal, written in format `YYYY-mm-dd`
              example: '2026-08-01'
            features:
              type: array
              description: Array of feature objects the user can use in the license
              items:
                type: object
                properties:
                  name:
                    type: string
                    description: Human friendly name of the feature
                    example: Klanten
                  slug:
                    type: string
                    description: Unique identifier for this feature
                    example: customers
                  usageLimit:
                    type: integer
                    nullable: true
                    description: >-
                      Usage limit for the given period. `null` when there is no
                      limit.
                    example: 1000
                  usageCurrent:
                    type: integer
                    nullable: true
                    description: >-
                      Feature usage in the current period. `null` when there is
                      no limit.
                    example: 13
                  usagePeriod:
                    type: string
                    description: >-
                      Renewal period for this feature. Can be `monthly`, `fixed`
                      or `active`.
                    example: fixed
        token:
          type: object
          description: Information about the token used
          properties:
            scopes:
              type: array
              description: The scope set for the token used
              items:
                type: string
                description: The scope name
                example: customers.read
            expiresAt:
              type: string
              description: Date and time when the token expires, written in ATOM format
              example: '2126-08-01T12:00:00.000Z'
  securitySchemes:
    APIKey:
      type: http
      scheme: bearer

````