You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"requestsPerMinute": 200, // Sustained rate limit per minute
37
+
"maxBurst": 400, // Maximum burst capacity
38
+
"remaining": 398, // Current tokens available
39
+
"resetAt": "..."// When tokens next refill
38
40
}
39
41
},
40
42
"usage": {
@@ -46,7 +48,7 @@ Alle API-Antworten enthalten Informationen über Ihre Workflow-Ausführungslimit
46
48
}
47
49
```
48
50
49
-
**Hinweis:**Die Ratenbegrenzungen in der Antwort beziehen sich auf Workflow-Ausführungen. Die Ratenbegrenzungen für den Aufruf dieses API-Endpunkts befinden sich in den Antwort-Headern (`X-RateLimit-*`).
51
+
**Hinweis:** Ratenbegrenzungen verwenden einen Token-Bucket-Algorithmus. `remaining` kann `requestsPerMinute` bis zu `maxBurst` überschreiten, wenn du dein volles Kontingent in letzter Zeit nicht genutzt hast, was Burst-Traffic ermöglicht. Die Ratenbegrenzungen im Antworttext gelten für Workflow-Ausführungen. Die Ratenbegrenzungen für den Aufruf dieses API-Endpunkts befinden sich in den Antwort-Headern (`X-RateLimit-*`).
50
52
51
53
### Logs abfragen
52
54
@@ -110,13 +112,15 @@ Fragen Sie Workflow-Ausführungsprotokolle mit umfangreichen Filteroptionen ab.
110
112
"limits": {
111
113
"workflowExecutionRateLimit": {
112
114
"sync": {
113
-
"limit": 60,
114
-
"remaining": 58,
115
+
"requestsPerMinute": 60,
116
+
"maxBurst": 120,
117
+
"remaining": 118,
115
118
"resetAt": "2025-01-01T12:35:56.789Z"
116
119
},
117
120
"async": {
118
-
"limit": 60,
119
-
"remaining": 59,
121
+
"requestsPerMinute": 200,
122
+
"maxBurst": 400,
123
+
"remaining": 398,
120
124
"resetAt": "2025-01-01T12:35:56.789Z"
121
125
}
122
126
},
@@ -190,13 +194,15 @@ Rufen Sie detaillierte Informationen zu einem bestimmten Logeintrag ab.
190
194
"limits": {
191
195
"workflowExecutionRateLimit": {
192
196
"sync": {
193
-
"limit": 60,
194
-
"remaining": 58,
197
+
"requestsPerMinute": 60,
198
+
"maxBurst": 120,
199
+
"remaining": 118,
195
200
"resetAt": "2025-01-01T12:35:56.789Z"
196
201
},
197
202
"async": {
198
-
"limit": 60,
199
-
"remaining": 59,
203
+
"requestsPerMinute": 200,
204
+
"maxBurst": 400,
205
+
"remaining": 398,
200
206
"resetAt": "2025-01-01T12:35:56.789Z"
201
207
}
202
208
},
@@ -482,19 +488,27 @@ Fehlgeschlagene Webhook-Zustellungen werden mit exponentiellem Backoff und Jitte
482
488
483
489
## Rate-Limiting
484
490
485
-
Die API implementiert Rate-Limiting, um eine faire Nutzung zu gewährleisten:
491
+
Die API verwendet einen **Token-Bucket-Algorithmus** für die Ratenbegrenzung, der eine faire Nutzung ermöglicht und gleichzeitig Burst-Traffic zulässt:
486
492
487
-
-**Kostenloser Plan**: 10 Anfragen pro Minute
488
-
-**Pro-Plan**: 30 Anfragen pro Minute
489
-
-**Team-Plan**: 60 Anfragen pro Minute
490
-
-**Enterprise-Plan**: Individuelle Limits
493
+
| Plan | Anfragen/Minute | Burst-Kapazität |
494
+
|------|-----------------|----------------|
495
+
| Free | 10 | 20 |
496
+
| Pro | 30 | 60 |
497
+
| Team | 60 | 120 |
498
+
| Enterprise | 120 | 240 |
491
499
492
-
Rate-Limit-Informationen sind in den Antwort-Headern enthalten:
493
-
-`X-RateLimit-Limit`: Maximale Anfragen pro Zeitfenster
494
-
-`X-RateLimit-Remaining`: Verbleibende Anfragen im aktuellen Zeitfenster
495
-
-`X-RateLimit-Reset`: ISO-Zeitstempel, wann das Zeitfenster zurückgesetzt wird
500
+
**Wie es funktioniert:**
501
+
- Tokens werden mit der Rate `requestsPerMinute` aufgefüllt
502
+
- Du kannst im Leerlauf bis zu `maxBurst` Tokens ansammeln
503
+
- Jede Anfrage verbraucht 1 Token
504
+
- Die Burst-Kapazität ermöglicht die Bewältigung von Verkehrsspitzen
496
505
497
-
## Beispiel: Abfragen neuer Logs
506
+
Informationen zur Ratenbegrenzung sind in den Antwort-Headern enthalten:
507
+
-`X-RateLimit-Limit`: Anfragen pro Minute (Auffüllrate)
"requestsPerMinute": 200, // Sustained rate limit per minute
37
+
"maxBurst": 400, // Maximum burst capacity
38
+
"remaining": 398, // Current tokens available
39
+
"resetAt": "..."// When tokens next refill
38
40
}
39
41
},
40
42
"usage": {
@@ -46,7 +48,7 @@ Todas las respuestas de la API incluyen información sobre tus límites de ejecu
46
48
}
47
49
```
48
50
49
-
**Nota:** Los límites de tasa en el cuerpo de la respuesta son para ejecuciones de flujos de trabajo. Los límites de tasa para llamar a este endpoint de la API están en los encabezados de respuesta (`X-RateLimit-*`).
51
+
**Nota:** Los límites de tasa utilizan un algoritmo de cubo de tokens. `remaining` puede exceder `requestsPerMinute` hasta `maxBurst` cuando no has usado tu asignación completa recientemente, permitiendo tráfico en ráfagas. Los límites de tasa en el cuerpo de la respuesta son para ejecuciones de flujo de trabajo. Los límites de tasa para llamar a este punto final de la API están en los encabezados de respuesta (`X-RateLimit-*`).
50
52
51
53
### Consultar registros
52
54
@@ -110,13 +112,15 @@ Consulta los registros de ejecución de flujos de trabajo con amplias opciones d
110
112
"limits": {
111
113
"workflowExecutionRateLimit": {
112
114
"sync": {
113
-
"limit": 60,
114
-
"remaining": 58,
115
+
"requestsPerMinute": 60,
116
+
"maxBurst": 120,
117
+
"remaining": 118,
115
118
"resetAt": "2025-01-01T12:35:56.789Z"
116
119
},
117
120
"async": {
118
-
"limit": 60,
119
-
"remaining": 59,
121
+
"requestsPerMinute": 200,
122
+
"maxBurst": 400,
123
+
"remaining": 398,
120
124
"resetAt": "2025-01-01T12:35:56.789Z"
121
125
}
122
126
},
@@ -190,13 +194,15 @@ Recupera información detallada sobre una entrada de registro específica.
190
194
"limits": {
191
195
"workflowExecutionRateLimit": {
192
196
"sync": {
193
-
"limit": 60,
194
-
"remaining": 58,
197
+
"requestsPerMinute": 60,
198
+
"maxBurst": 120,
199
+
"remaining": 118,
195
200
"resetAt": "2025-01-01T12:35:56.789Z"
196
201
},
197
202
"async": {
198
-
"limit": 60,
199
-
"remaining": 59,
203
+
"requestsPerMinute": 200,
204
+
"maxBurst": 400,
205
+
"remaining": 398,
200
206
"resetAt": "2025-01-01T12:35:56.789Z"
201
207
}
202
208
},
@@ -482,19 +488,27 @@ Las entregas de webhook fallidas se reintentan con retroceso exponencial y fluct
482
488
483
489
## Limitación de tasa
484
490
485
-
La API implementa limitación de tasa para asegurar un uso justo:
491
+
La API utiliza un **algoritmo de cubo de tokens**para limitar la tasa, proporcionando un uso justo mientras permite tráfico en ráfagas:
486
492
487
-
-**Plan gratuito**: 10 solicitudes por minuto
488
-
-**Plan Pro**: 30 solicitudes por minuto
489
-
-**Plan Team**: 60 solicitudes por minuto
490
-
-**Plan Enterprise**: Límites personalizados
493
+
| Plan | Solicitudes/Minuto | Capacidad de ráfaga |
494
+
|------|-----------------|----------------|
495
+
| Free | 10 | 20 |
496
+
| Pro | 30 | 60 |
497
+
| Team | 60 | 120 |
498
+
| Enterprise | 120 | 240 |
491
499
492
-
La información de límite de tasa se incluye en las cabeceras de respuesta:
493
-
-`X-RateLimit-Limit`: Solicitudes máximas por ventana
494
-
-`X-RateLimit-Remaining`: Solicitudes restantes en la ventana actual
495
-
-`X-RateLimit-Reset`: Marca de tiempo ISO cuando la ventana se reinicia
500
+
**Cómo funciona:**
501
+
- Los tokens se recargan a una tasa de `requestsPerMinute`
502
+
- Puedes acumular hasta `maxBurst` tokens cuando estás inactivo
503
+
- Cada solicitud consume 1 token
504
+
- La capacidad de ráfaga permite manejar picos de tráfico
496
505
497
-
## Ejemplo: Sondeo de nuevos registros
506
+
La información del límite de tasa se incluye en los encabezados de respuesta:
507
+
-`X-RateLimit-Limit`: Solicitudes por minuto (tasa de recarga)
0 commit comments