Skip to content
Merged
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
4 changes: 2 additions & 2 deletions docs/build/api/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 <YOUR_API_KEY>" \
-H "X-API-KEY: <YOUR_API_KEY>" \
-d '{
"basicConfiguration": "cpu-4-ram-8gb-storage-25gb"
}'
Expand Down