Daftar Batas Laju Organisasi
GET/v1/organizations/rate_limits
Mencantumkan batas laju (rate limit) Messages API untuk organisasi Anda.
Setiap entri sesuai dengan satu grup batas laju (baik keluarga model maupun kategori permukaan API seperti Files API atau Message Batches) dan berisi kumpulan nilai pembatas yang berlaku untuknya.
Ketika limit dihilangkan, setiap entri yang cocok dikembalikan dalam satu
halaman; ketika limit memotong hasil, ikuti next_page untuk mengambil
entri yang tersisa.
Query parameters
Returns
Daftar Batas Laju Organisasi
cURL
curl https://api.anthropic.com/v1/organizations/rate_limits \
-H 'anthropic-version: 2023-06-01' \
-H "Authorization: Bearer $ANTHROPIC_AUTH_TOKEN"Response 200
{
"data": [
{
"id": "id",
"group_type": "batch",
"limits": [
{
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "rate_limit"
}
],
"next_page": "next_page"
}Returns Examples
Response 200
{
"data": [
{
"id": "id",
"group_type": "batch",
"limits": [
{
"type": "type",
"value": 0
}
],
"models": [
"string"
],
"type": "rate_limit"
}
],
"next_page": "next_page"
}