# APIレート制限と利用上限

レート制限は、プラットフォームの安定性を保護し、全利用者に対して公平な利用を確保します。当社のAPI上に統合機能または自動化を構築する場合、その仕組みを理解しておくことをお勧めします。

### プラン別の制限

| プラン        | 1分あたりのリクエスト数 | 1日あたりのリクエスト数 |
| ---------- | ------------ | ------------ |
| Free       | 60           | 1,000        |
| Pro        | 300          | 10,000       |
| Business   | 1,000        | 100,000      |
| Enterprise | Custom       | Custom       |

### レート制限ヘッダー

すべてのAPI応答には、現在の利用状況を示すヘッダーが含まれます。

```
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 241
X-RateLimit-Reset: 1714560000
```

`X-RateLimit-Reset` は、制限がリセットされる時刻を示すUnixタイムスタンプです。

### 制限に達した場合に起こること

レート制限を超えたリクエストには、 `429 Too Many Requests` レスポンスが返されます。クライアントは、 `Retry-After` ヘッダーに示された時間の後に、待機して再試行してください。

{% hint style="warning" %}
429 応答を受信した後にAPIへ繰り返し過度な要求を行うと、APIキーが一時的に禁止される場合があります。統合機能には、常に指数バックオフを実装してください。
{% endhint %}

### 制限を引き上げる方法

より高い制限が必要なユースケースの場合、まずプランのアップグレードをご検討ください。Enterpriseレベルの要件については、 [お問い合わせ](https://example.com/contact) いただき、個別のクォータについてご相談ください。


---

# Agent Instructions: 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://isbm.savimbo.com/practice-guide/ja/lian-xie/apirtoto.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.
