> For the complete documentation index, see [llms.txt](https://apidocs.tc-gaming.co.uk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://apidocs.tc-gaming.co.uk/getting-started/readme/rate-limiting.md).

# Rate Limiting

For requests using client keys, you can make up to 720 requests per hour. The rate limit for IP restricted keys can be negoitiated depending on the requirements of your application. If your application will be using client keys in production, bear in mind that the rate limit equates to 1 request every 5 seconds so consider caching frequently accessed data.

## Check my rate limit

The simplest way of checking the status of your rate limit is by logging in to \[TC] World and viewing your rate limit status under 'My Account': [world.city-driving.co.uk/?page=myaccount](http://world.city-driving.co.uk/?page=myaccount)

You can also check the returned HTTP headers of API requests to see the status of your rate limit, for instance with `curl`:

```
$ curl -i "http://api.tc-gaming.co.uk/citydriving/stats/online?key=YOUR_KEY"
```

```
HTTP/1.1 200 OK
Date: Sat, 18 Mar 2017 08:27:06 GMT
X-RateLimit-Limit: 720/3600
X-RateLimit-Remaining: 588
X-RateLimit-Reset: 1489814179
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://apidocs.tc-gaming.co.uk/getting-started/readme/rate-limiting.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
