From 88613703e325c542f4c65e7ff544122bc9e56700 Mon Sep 17 00:00:00 2001 From: lowzzz Date: Thu, 8 Jan 2026 15:44:31 +0100 Subject: [PATCH 1/2] api key header --- docs/build/api/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/api/overview.md b/docs/build/api/overview.md index 9fd0c1c..ecf21f9 100644 --- a/docs/build/api/overview.md +++ b/docs/build/api/overview.md @@ -40,7 +40,7 @@ The Fluence API accepts and returns data in JSON format. When making POST reques ```bash curl -i -X POST https://api.fluence.dev/marketplace/offers \ -H "Content-Type: application/json" \ - -H "Authorization: Bearer " \ + -H "X-API-KEY: " \ -d '{ "basicConfiguration": "cpu-4-ram-8gb-storage-25gb" }' From 7d97612e1c3554037037fb95a23d08acb7e18451 Mon Sep 17 00:00:00 2001 From: lowzzz Date: Thu, 8 Jan 2026 15:50:52 +0100 Subject: [PATCH 2/2] doc fix --- docs/build/api/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/build/api/overview.md b/docs/build/api/overview.md index ecf21f9..4ceabc1 100644 --- a/docs/build/api/overview.md +++ b/docs/build/api/overview.md @@ -28,7 +28,7 @@ The API enables you to: ### Authentication -All Fluence API endpoints require an API key sent as a Bearer token in the `Authorization` header. +All Fluence API endpoints require an API key sent in the `X-API-KEY` header. You can create and manage your keys in the [Fluence Console settings guide](../settings/settings.md). If you omit or supply an invalid key, you’ll get a 403 code error. ### Request and response format