API Key
Last updated
Use this method when the provider gives you a key-value credential and expects it in a header or query parameter.
Nected appends your API key either:
as a header (recommended), or
as a query parameter (if provider requires).
Provider requires API key authentication
You need simple machine-to-machine auth without OAuth flow
Key: field name, for example X-API-Key or api_key
Value: secret key provided by the external API owner
Header style:
Query style:
Start from either location:
Path A: Open Security > Authorization and click + New Authentication.
Path B: Open the REST API connector configuration sidebar and click Create Authentication from the Authentication dropdown.
Select API Key.
Add Key and Value.
Save configuration.
Attach/select this auth config in the integration/API request step.
Test against the provider endpoint.
Key name matches provider docs exactly.
Placement matches provider requirement (header/query).
Key value has no extra characters.
Prefer header placement over query when supported.
Avoid logging full URLs if key is passed as query param.
Rotate and revoke keys regularly.
401 Unauthorized: key is wrong or revoked.
403 Forbidden: key is valid but lacks required permission.
Works in one tool only: verify header vs query placement mismatch.
Last updated
X-API-Key: <api_key_value>GET /resource?api_key=<api_key_value>