Deals List

Get all deals with related plan information. Includes plan name and duration for plan-specific deals. Global deals (plan_id = NULL) will have plan_name and plan_duration as None.

GET/deals/list

1const response = await fetch('https://api.pinguproxy.com/deals/list');
2const deals = await response.json();

Response

Status 200
[
{
"name": "New Year Deal",
"end_date": "2026-01-30T14:20:41.654Z",
"plan_name": "Basic Plan",
"plan_duration": 30,
"message": "Save 20% on Basic"
},
{
"name": "Global Spring Sale",
"end_date": "2026-03-15T00:00:00.000Z",
"plan_name": null,
"plan_duration": null,
"message": "10% off all plans"
}
]