TAN Adv Request
BusinessHow to call TAN Adv — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/tan/fetch_adv
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| tan_number | string | Required | 10-character TAN number (e.g. ABCT12345E). |
Request Body
{
"tan_number": "ABKT12345E"
}
cURL
curl -X POST https://app.way2api.com/api/v1/tan/fetch_adv \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"tan_number":"ABKT12345E"}'
🚀 Send Request