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

# My Credits

> Check your remaining API credits balance. Rate limit: 50 requests/min.

Check your remaining API credits balance. This endpoint does not consume any credits.

<Note>
  Your API key is required in the `x-api-key` header for all requests.
</Note>


## OpenAPI

````yaml GET /my-credits
openapi: 3.1.0
info:
  title: Data Docked Maritime API
  description: >-
    A comprehensive maritime data API providing real-time vessel tracking, port
    operations, inspection data, and more. Access AIS data, vessel particulars,
    management information, and historical tracking data.
  version: 1.0.0
  contact:
    name: Data Docked Support
    url: https://datadocked.com/contact
servers:
  - url: https://datadocked.com/api/vessels_operations
    description: Production server
security:
  - apiKey: []
tags:
  - name: Account
    description: Account management endpoints
  - name: Vessel Operations
    description: Vessel data, location, and tracking endpoints
  - name: Port Operations
    description: Port calls and port data endpoints
paths:
  /my-credits:
    get:
      tags:
        - Account
      summary: My Credits
      description: 'Check your remaining API credits balance. Rate limit: 50 requests/min.'
      operationId: getMyCredits
      responses:
        '200':
          description: Successful response with credit balance
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CreditsResponse'
              example:
                detail:
                  credits: 100
        '401':
          description: Unauthorized - Invalid or missing API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
components:
  schemas:
    CreditsResponse:
      type: object
      properties:
        detail:
          type: object
          properties:
            credits:
              type: integer
              description: Number of remaining credits
    Error:
      type: object
      properties:
        error:
          type: string
          description: Error type
        message:
          type: string
          description: Error message
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Your personal API key found in your profile dashboard at
        https://datadocked.com/dashboard/my_keys

````