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

# Client Details

> API to get current user details



## OpenAPI

````yaml /openapi-v1.json get /client/plan
openapi: 3.1.0
info:
  title: Mailercloud Marketing API
  version: 1.0.0
  description: >-
    Campaigns, contacts, lists, segments, automations, and webhooks for the
    Mailercloud Marketing Platform.
servers:
  - url: https://cloudapi.mailercloud.com/v1
security:
  - apiKey: []
tags:
  - name: Campaigns
  - name: Contacts
  - name: Lists
  - name: Tags
  - name: Segments
  - name: Custom Properties
  - name: Senders
  - name: Templates
  - name: Automations
  - name: Webhooks
  - name: Webforms
  - name: Inbox Tracker
  - name: Account
paths:
  /client/plan:
    get:
      tags:
        - Account
      summary: Client Details
      description: API to get current user details
      operationId: client-details
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                description: ''
                type: object
                x-examples:
                  example-1:
                    data:
                      email: user@example.com
                      name: MailerCloud User
                      plan: Enterprise plan
                      remaining_contacts: 943
                      total_contacts: 1000
                      used_contacts: 57
                properties:
                  data:
                    type: object
                    properties:
                      email:
                        type: string
                        minLength: 1
                        description: Client email
                      name:
                        type: string
                        minLength: 1
                        description: Client name
                      plan:
                        type: string
                        minLength: 1
                        description: Client current plan
                      remaining_contacts:
                        type: number
                        description: Remaining contact for client
                      total_contacts:
                        type: number
                        description: Total contacts for client
                      used_contacts:
                        type: number
                        description: Client used contact count
                required:
                  - data
              examples:
                example-1:
                  value:
                    data:
                      email: user@example.com
                      name: MailerCloud User
                      plan: Enterprise plan
                      remaining_contacts: 943
                      total_contacts: 1000
                      used_contacts: 57
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: Authorization
      description: >-
        Your Mailercloud API key (plain text, no Bearer prefix). Create keys in
        Settings → API.

````