Get Started
Create a free account on The Org
💡
Free accounts get 100 API credits pr. month, and may buy up to 10,000 additional credits.
Obtain an API key
Navigate to Settings → API . Choose an informative name for your API key and click create.
Test your API key
Preview your remaining credits, by using the Usage API:
Run this in your terminal
curl --location 'https://api.theorg.com/v1/usage' \
--header 'X-Api-Key: <insert_api_key_here>'
This should return a JSON object with your remaining monthly credits, along with the date that these credits reset and any extra credits you have purchased:
{
"data": {
"resetDate": "2025-04-19",
"unlimited": false,
"availableMonthlyCredits": 100,
"extraCredits": 0
}
}
You are now ready to use the API!
Last updated on