Skip to main content
GET
/
features
/
{id}
cURL
curl https://api.growthbook.io/api/v1/features/my_feature \
  -u secret_abc123DEF456:
{
  "feature": {
    "id": "<string>",
    "dateCreated": "2023-11-07T05:31:56Z",
    "dateUpdated": "2023-11-07T05:31:56Z",
    "archived": true,
    "description": "<string>",
    "owner": "<unknown>",
    "project": "<string>",
    "valueType": "boolean",
    "defaultValue": "<string>",
    "tags": [
      "<string>"
    ],
    "environments": {},
    "revision": {
      "version": 123,
      "comment": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "createdBy": "<string>",
      "publishedBy": "<string>"
    },
    "prerequisites": [
      "<string>"
    ],
    "customFields": {},
    "holdout": {
      "id": "<string>",
      "value": "<string>"
    },
    "revisions": [
      {
        "baseVersion": 123,
        "version": 123,
        "comment": "<string>",
        "date": "2023-11-07T05:31:56Z",
        "status": "<string>",
        "rules": {},
        "createdBy": "<string>",
        "publishedBy": "<string>",
        "defaultValue": "<string>",
        "definitions": {},
        "environmentsEnabled": {},
        "envPrerequisites": {},
        "prerequisites": [
          {
            "id": "<string>",
            "condition": "<string>"
          }
        ],
        "metadata": {
          "description": "<string>",
          "owner": "<unknown>",
          "project": "<string>",
          "tags": [
            "<string>"
          ],
          "neverStale": true,
          "valueType": "<string>",
          "jsonSchema": {
            "schemaType": "schema",
            "schema": "<string>",
            "simple": {},
            "date": "2023-11-07T05:31:56Z",
            "enabled": true
          },
          "customFields": {}
        }
      }
    ]
  }
}

Documentation Index

Fetch the complete documentation index at: https://growthbook-preview.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

If using Bearer auth, pass the Secret Key as the token:

curl https://api.growthbook.io/api/v1 \
-H "Authorization: Bearer secret_abc123DEF456"

Path Parameters

id
string
required

The id of the requested resource

Query Parameters

withRevisions
enum<string>

Also return feature revisions (all, draft, or published statuses)

Available options:
all,
drafts,
published,
none

Response

200 - application/json

Success

feature
object
required