Rate Limiting
Property Deck rate limits the amount of requests to the API, by default this is 60 requests per minute. Requests are associated with a user which means all OAuth applications authorized by a user share the same quota even if they authenticated with different tokens.
Several HTTP headers will be sent with the response to show your current limit
| Header | Description |
|---|---|
X-RateLimit-Limit | The maximum number of requests you can make per minute |
X-RateLimit-Remaining | The number of requests remaining in the current window |
X-RateLimit-Reset | The epoch time at which the rate window resets |
Retry-After | The amount of seconds you should wait before attempting another request |
