사용 가능한 할인 목록

이 섹션에서는 PinguProxy에서 사용 가능한 할인 목록을 안정적으로 설정하는 방법을 설명합니다.

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

응답

상태 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"
}
]