4xx Client error responses
429Too Many Requests
Too many requests
#When does this occur?
Returned when the client has sent too many requests in a given time period. Indicates rate limiting has been triggered.
#How to handle?
Check the Retry-After header and retry after the specified time. Reduce request frequency or increase API limits.
#Example
HTTP Response
HTTP/1.1 429 Too Many Requests
Content-Type: application/json
Date: Tue, 10 Feb 2026 07:17:20 GMT
{
"status": 429,
"message": "Too Many Requests"
}#Related Status Codes
이 포스팅은 쿠팡 파트너스 활동의 일환으로, 이에 따른 일정액의 수수료를 제공받습니다.