CDK Activator Public API
https://cdkactivator.online/apiAll endpoints accept both application/json and application/x-www-form-urlencoded.
All endpoints require an API key passed via the X-API-Key header.
X-API-Key: cdk_xxxxxxxxxxxxxxxx
/checkCheck the status of a CDK code before activation.
uniqueCodestringrequiredYour unique CDK codecurl -X POST https://cdkactivator.online/api/check \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{"uniqueCode": "YOUR_CDK_CODE"}'{
"status": "available",
"uniqueCode": "YOUR_CDK_CODE"
}/submitSubmit a ChatGPT Plus activation order for processing.
uniqueCodestringrequiredYour unique CDK codesessionDatastringrequiredChatGPT session JSON (must contain accessToken)notesstringYour reference/order ID (max 100 chars)webhookUrlstringHTTPS URL for order status notificationscurl -X POST https://cdkactivator.online/api/submit \
-H "Content-Type: application/json" \
-H "X-API-Key: YOUR_API_KEY" \
-d '{
"uniqueCode": "YOUR_CDK_CODE",
"sessionData": "{\"accessToken\":\"ey...\"}"
}'{
"status": "processing",
"uniqueCode": "YOUR_CDK_CODE",
"message": "Order submitted successfully"
}availableCode not used yetpendingOrder submitted, not yet assigned to workerprocessingOrder being processedcompletedOrder successfully completedfailedOrder failed (see error field)AUTH_ERRORInvalid or missing API keyMISSING_CODEuniqueCode not providedMISSING_SESSIONsessionData not providedINVALID_SESSIONInvalid session JSON formatINVALID_WEBHOOKInvalid webhook URL (must be HTTPS)INVALID_CODECDK code not foundCODE_USEDCDK already usedDATABASE_ERRORDatabase operation failedWORKFLOW_ERRORFailed to start processing