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

# Get My Information

> Retrieve information for the authenticated account.



## OpenAPI

````yaml /openapi.json get /v1/me
openapi: 3.1.0
info:
  version: 1.0.0
  title: CCCAMBOX Reseller API
  description: >-
    CCCambox Reseller API provides programmatic access to manage IPTV
    subscriptions and line management. Use this API to automate operations like
    creating new lines, managing packages, handling credits. Includes endpoints
    for subscriber management, package configuration, and line monitoring. Built
    for resellers to efficiently scale their IPTV business operations.
servers: []
security: []
paths:
  /v1/me:
    get:
      tags:
        - Overview
      summary: Get My Information
      description: Retrieve information for the authenticated account.
      responses:
        '200':
          description: 'Ok: Return authenticated account information'
          content:
            application/json:
              schema:
                type: object
                properties:
                  email:
                    type: string
                    format: email
                    description: Email address of the authenticated account.
                    example: user@example.com
                  credits:
                    type: number
                    example: 1000
                    description: Number of credits available.
                  lines_count:
                    type: integer
                    example: 42
                    description: Total number of lines for the authenticated account.
                  server_information:
                    type: object
                    properties:
                      hostname:
                        type:
                          - string
                          - 'null'
                        description: Primary reseller hostname.
                        example: http://example-iptv.com
                      mag_portal_url:
                        type:
                          - string
                          - 'null'
                        description: MAG portal URL built from the reseller hostname.
                        example: http://example-iptv.com/mag/portal.php
                    required:
                      - hostname
                      - mag_portal_url
                required:
                  - email
                  - credits
                  - lines_count
                  - server_information
        '401':
          description: 'Auth Error: Not authorized.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - not_authorized
                  message:
                    type: string
                    example: Not authorized to perform this action.
                required:
                  - code
                  - message
        '429':
          description: 'Rate limit error: too many requests.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - rate_limit
                  message:
                    type: string
                    example: Rate limit exceeded.
                required:
                  - code
                  - message
        '500':
          description: 'Server Error: handler died.'
          content:
            application/json:
              schema:
                type: object
                properties:
                  code:
                    type: string
                    enum:
                      - server_error
                  message:
                    type: string
                    example: Internal server error occurred.
                  requestId:
                    type: string
                required:
                  - code
                  - message
                  - requestId
      security:
        - ApiKeyAuth: []
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      description: API Key
      name: x-api-key
      in: header

````