2019-08-12 11:16:28 +00:00
|
|
|
# Limitations
|
|
|
|
|
|
|
|
api.global is deplyoing a few hard limitations on a per account basis:
|
|
|
|
|
|
|
|
* 1 million API requests per hour
|
|
|
|
* 12 million API requests per day
|
2019-08-12 11:30:43 +00:00
|
|
|
* max of 10 assigned workers at any given time.
|
2019-08-12 11:16:28 +00:00
|
|
|
|
|
|
|
!!! hint
|
|
|
|
running into one of those limitations will result in a 429 status code with an info of when to try again attached as json payload in the response.
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"retryIn": 3600000
|
|
|
|
}
|
|
|
|
```
|