# Rate and Usage Limits
The basic rate limit is 250 requests per minute per user basis. Also, depending on your plan, you may have different usage limits. If you exceed either limit, your request will return an HTTP 429 Too Many Requests status code.
The following set of headers are returned on the response to help you identify your use status:
| Header | Description |
|  --- | --- |
| X-Ratelimit-Limit | The maximum number of requests that the consumer is permitted to make per minute. |
| X-Ratelimit-Remaining | The number of requests remaining in the current rate limit window. |
| X-Ratelimit-Reset | The time at which the current rate limit window resets in UTC epoch seconds. This header is only present when maximum number of requests has been consumed for time period. |

