API Documentation v2.0
The TD Solutions API allows you to programmatically manage your ad infrastructure, issue cards, and check account statuses. Ideal for large teams and automated scaling.
Authentication
Authenticate your requests by including your API key in the header. You can generate a key in the Developer Settings.
// Header
Authorization: Bearer YOUR_API_KEY
Endpoints
GET
/v2/assets/list
Retrieves a list of all active RDPs and Ad Accounts.
{
"status": "success",
"data": [
{
"id": "acc_8821",
"type": "agency_facebook",
"status": "active",
"limit": "unlimited"
}
]
}
POST
/v2/cards/issue
Instantly issues a new virtual card.
// Request Body
{
"bin": "532950",
"holder_name": "Media Buyer 01",
"limit": 5000
}
Rate Limits
The API is limited to 100 requests per minute per IP address. Exceeding this will result in a 429 Too Many Requests response.