# `429`- Too Many Requests

## Description

You have sent too many requests in a given amount of time ("rate limiting").

## How to fix

Retry with [exponential backoff](https://en.wikipedia.org/wiki/Exponential_backoff).

## Example


```http
HTTP/1.1 429 Too Many Requests
content-length: 166
content-type: application/problem+json
date: Wed, 17 Apr 2024 10:42:01 GMT
upvest-request-id: afcd3c2f-6965-4e1b-bb3e-87a3b481ce29

{
    "type": "https://docs.upvest.co/errors/too_many_requests",
    "status": 429,
    "title": "Too many requests",
    "request_id": "afcd3c2f-6965-4e1b-bb3e-87a3b481ce29"
}
```