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
13 changes: 13 additions & 0 deletions docs/docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,19 @@
}
]
},
{
"anchor": "API Reference",
"icon": "code",
"groups": [
{
"group": "Overview",
"pages": [
"v2/reference/overview"
]
}

]
},
{
"anchor": "Blog",
"href": "https://blog.flipt.io",
Expand Down
46 changes: 23 additions & 23 deletions docs/v2/licensing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -18,30 +18,30 @@ The **majority of Flipt v2 remains free and open source**, including:

## Feature Comparison: Free vs Pro

| Feature Category | Free | Pro | Notes |
| ----------------------------------- | ---- | --- | --------------------------------------------------------------------------------------------------------------------------------- |
| **Core Functionality** | | | |
| Feature flag evaluation engine | ✅ | ✅ | Full functionality in both |
| Dashboard and UI | ✅ | ✅ | Complete interface |
| Multi-environment support | ✅ | ✅ | Unlimited environments |
| Branch environments | ✅ | ✅ | Git-based branching |
| Git-backed storage and sync | ✅ | ✅ | Full Git integration |
| Authentication mechanisms | ✅ | ✅ | OIDC, token-based |
| Real-time client updates | ✅ | ✅ | Server Sent Events (SSE) support |
| **Advanced Workflows** | | | |
| Enterprise DevOps Integration | ❌ | ✅ | GitHub, GitLab, Bitbucket, Azure DevOps, Gitea |
| Merge proposals with SCM | ❌ | ✅ | Automated PR/MR creation |
| GPG commit signing | ❌ | ✅ | Cryptographic verification |
| **Security & Operations** | | | |
| Feature Category | Free | Pro | Notes |
| ----------------------------------- | ---- | --- | ----------------------------------------------------------------------------------------------------- |
| **Core Functionality** | | | |
| Feature flag evaluation engine | ✅ | ✅ | Full functionality in both |
| Dashboard and UI | ✅ | ✅ | Complete interface |
| Multi-environment support | ✅ | ✅ | Unlimited environments |
| Branch environments | ✅ | ✅ | Git-based branching |
| Git-backed storage and sync | ✅ | ✅ | Full Git integration |
| Authentication mechanisms | ✅ | ✅ | OIDC, token-based |
| Real-time client updates | ✅ | ✅ | Server Sent Events (SSE) support |
| **Advanced Workflows** | | | |
| Enterprise DevOps Integration | ❌ | ✅ | GitHub, GitLab, Bitbucket, Azure DevOps, Gitea |
| Merge proposals with SCM | ❌ | ✅ | Automated PR/MR creation |
| GPG commit signing | ❌ | ✅ | Cryptographic verification |
| **Security & Operations** | | | |
| Integrated secrets management | ❌ | ✅ | HashiCorp Vault, AWS Secrets Manager, GCP Secret Manager, and Azure Key Vault with secrets references |
| Air-gapped environment support | ❌ | ✅ | Offline license validation |
| Enterprise authentication providers | ❌ | 🔄 | Coming soon |
| Advanced analytics and reporting | ❌ | 🔄 | Coming soon |
| **Support** | | | |
| Community support | ✅ | ✅ | Discord, GitHub issues |
| Dedicated support channel | ❌ | ✅ | Direct Slack access |
| Priority bug fixes | ❌ | ✅ | Faster resolution |
| Priority feature requests | ❌ | ✅ | Influence roadmap |
| Air-gapped environment support | ❌ | ✅ | Offline license validation |
| Enterprise authentication providers | ❌ | 🔄 | Coming soon |
| Advanced analytics and reporting | ❌ | 🔄 | Coming soon |
| **Support** | | | |
| Community support | ✅ | ✅ | Discord, GitHub issues |
| Dedicated support channel | ❌ | ✅ | Direct Slack access |
| Priority bug fixes | ❌ | ✅ | Faster resolution |
| Priority feature requests | ❌ | ✅ | Influence roadmap |

## Pro Licensing

Expand Down
10 changes: 10 additions & 0 deletions docs/v2/reference/overview.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
title: API Overview
description: Learn how to interact with the Flipt REST API to manage flags, segments, rules, and evaluate feature flags programmatically.
---

Flipt's API is the primary way to interact with Flipt Open Source outside of the UI. It's used to create, update, and delete entities such as namespaces, flags, segments, rules, and also to evaluate flags.

The Flipt UI is completely backed by this same API. This means that anything that can be done in the Flipt UI can also be done via the REST API.

The latest version of the [management REST API](https://raw.githubusercontent.com/flipt-io/flipt/refs/heads/v2/rpc/v2/environments/openapi.yaml) and [evaluation REST API](https://raw.githubusercontent.com/flipt-io/flipt/refs/heads/v2/rpc/v2/evaluation/openapi.yaml) are documented using the OpenAPI v3 specification.
Loading