Skip to main content

Overview

The Account API allows you to manage your API account, check credit balance, monitor usage, and configure webhooks.

Endpoints

All account endpoints are free — they never consume credits.

Get Account Info

Retrieve your account details and plan information.

Response


Get Credit Balance

Check your current credit balance and usage.

Response

Credits do not roll over. Each period starts at limit, whatever was left of the previous one — 25,000 with 8,000 unspent renews at 25,000, not 33,000.

Get Usage Statistics

View detailed usage statistics for your account.
This endpoint always reports the current calendar month and takes no parameters. For a longer or arbitrary window, page through /account/history.

Response


Get Request History

Page through your full request log, newest first.
integer
default:"50"
Records to return. Capped at 100.
integer
default:"0"
Records to skip.

Response


Set Your Webhook URL

Store a default webhook URL on your account, so you don’t have to send X-Webhook-URL on every request.
string
required
Your webhook endpoint. Must be https:// — plain http is rejected.
There is nothing to subscribe to. One URL receives every event for your account: enrichment.completed, enrichment.failed and enrichment.no_data_found. There is no events array and no per-event filtering — see Webhooks for the payloads.
Placeholder hosts are rejected with 422 invalid_webhook_url. That includes example.com, your-domain.com, localhost and 127.0.0.1 — so don’t paste the literal example from a tutorial. Use a webhook.site URL to test.

Response

Your signing secret is not returned here. It is generated once with your account and shown in the API Panel → Webhooks page, where you can also rotate it.

Webhook Setup Guide

Learn how to handle and verify webhook events →