Skip to main content

How Credits Work

Data Docked uses a credit-based pricing system. Each API request consumes a certain number of credits depending on the endpoint and data returned.

Credit Costs by Endpoint

Account

EndpointCredits
My Credits0

Vessel Operations

EndpointCredits
Get Vessel Location1
Get Vessel Particulars1
Get Vessel Engine Data1
Get Vessel Management Data1
Vessel Details by Name1
Vessel Weather Data1
Vessel Inspection Data3
Get Vessel Info (comprehensive)5
Get Vessels by Area10

Variable Pricing

EndpointPricing
Bulk Location Search1 credit per vessel queried
Historical Data5 credits per unique date in results

Port Operations

EndpointCredits
Port Calls by Vessel1
Port Calls by Port50

Checking Your Balance

Check your remaining credits at any time:
curl -X GET "https://datadocked.com/api/vessels_operations/my-credits" \
  -H "x-api-key: YOUR_API_KEY"
Response:
{
  "detail": "99929 credits left."
}

Tips for Managing Credits

Use the most efficient endpoint for your needs. If you only need location data, use get-vessel-location (1 credit) instead of get-vessel-info (5 credits).

Choose the Right Endpoint

  • Need just position? Use get-vessel-location (1 credit)
  • Need full details? Use get-vessel-info (5 credits) - more efficient than calling multiple endpoints

Batch Requests

For multiple vessels, use the bulk endpoint:
  • Individual calls: 10 vessels × 1 credit = 10 credits
  • Bulk endpoint: 10 vessels = 10 credits (same cost, fewer requests)

Cache Responses

AIS data typically updates every few minutes. Consider caching responses to avoid unnecessary duplicate requests.

Purchasing Credits

Visit your dashboard to view available credit packages and purchase additional credits.