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

# Get Account Information

> Retrieve organization details, plan information, and credit usage.



## OpenAPI

````yaml v1-openapi GET /me
openapi: 3.1.0
info:
  title: Supadata
  description: Web & Social Media Content API for Developers
  version: 1.3.0
servers:
  - url: https://api.supadata.ai/v1
security:
  - apiKeyAuth: []
paths:
  /me:
    get:
      tags:
        - Account
      summary: Get account information
      description: Retrieve organization details, plan information, and credit usage.
      operationId: getMe
      parameters: []
      responses:
        '200':
          description: Account information retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Me'
        '401':
          description: Unauthorized
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        '500':
          description: Internal Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    Me:
      type: object
      properties:
        organizationId:
          type: string
          description: Unique identifier for the organization
          example: 550e8400-e29b-41d4-a716-446655440000
        plan:
          type: string
          description: Subscription plan name
          example: Pro
        maxCredits:
          type: number
          description: Maximum credits available for the current billing period
          example: 100000
        usedCredits:
          type: number
          description: Number of credits used in the current billing period
          example: 15000
      required:
        - organizationId
        - plan
        - maxCredits
        - usedCredits
    Error:
      type: object
      properties:
        error:
          type: string
          enum:
            - invalid-request
            - internal-error
            - forbidden
            - unauthorized
            - upgrade-required
            - transcript-unavailable
            - not-found
            - limit-exceeded
          description: Error code identifying the type of error
          example: invalid-request
        message:
          type: string
          description: Human readable error message
          example: Invalid Request
        details:
          type: string
          description: Detailed error description
          example: The request is invalid or malformed
        documentationUrl:
          type: string
          description: URL to error documentation
          example: https://supadata.ai/documentation/errors#invalid-request
      required:
        - error
        - message
        - details
      description: Standard error response format
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````