## Get Request Quota `cloudforce_one.requests.quota(RequestQuotaParams**kwargs) -> Quota` **get** `/accounts/{account_id}/cloudforce-one/requests/quota` Get Request Quota ### Parameters - `account_id: str` Identifier. ### Returns - `class Quota: …` - `anniversary_date: Optional[datetime]` Anniversary date is when annual quota limit is refreshed. - `quarter_anniversary_date: Optional[datetime]` Quarter anniversary date is when quota limit is refreshed each quarter. - `quota: Optional[int]` Tokens for the quarter. - `remaining: Optional[int]` Tokens remaining for the quarter. ### Example ```python import os from cloudflare import Cloudflare client = Cloudflare( api_email=os.environ.get("CLOUDFLARE_EMAIL"), # This is the default and can be omitted api_key=os.environ.get("CLOUDFLARE_API_KEY"), # This is the default and can be omitted ) quota = client.cloudforce_one.requests.quota( account_id="023e105f4ecef8ad9ca31a8372d0c353", ) print(quota.anniversary_date) ``` #### Response ```json { "errors": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "messages": [ { "code": 1000, "message": "message", "documentation_url": "documentation_url", "source": { "pointer": "pointer" } } ], "success": true, "result": { "anniversary_date": "2022-04-01T00:00:00Z", "quarter_anniversary_date": "2022-04-01T00:00:00Z", "quota": 120, "remaining": 64 } } ```