Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions _data/nav.yml
Original file line number Diff line number Diff line change
Expand Up @@ -731,6 +731,8 @@
url: "/codefresh-signed-artifacts"
- title: Verify authenticity of artifacts signed with Codefresh pipelines
url: "/pipelines-verify-cf-artifacts"
- title: Codefresh API keys rate limiter
url: "/api-key-rate-limiting"

- title: What's new
url: "/whats-new"
Expand Down
18 changes: 18 additions & 0 deletions _docs/security/api-key-rate-limiting.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Codefresh API keys rate limiter"
description: "Understand rate limiting behavior for Codefresh API keys"
group: security
toc: true
---

## Codefresh API keys rate limiter

To ensure platform stability and fair usage across all accounts, API requests are subject to rate limiting on a per Codefresh API-key basis.

Specific rate limit thresholds may vary and are subject to change without prior notice.

If your application exceeds the allowed request rate, the API will respond with HTTP status `429 Too Many Requests`.

If access has been restricted for your API key due to unusual activity, the API will respond with HTTP status `403 Forbidden`.

Design your integrations to handle `429` responses gracefully rather than relying on a fixed request budget.
Comment thread
kim-codefresh marked this conversation as resolved.