keyAPI Key

Use this method when the provider gives you a key-value credential and expects it in a header or query parameter.

What this method does

Nected appends your API key either:

  • as a header (recommended), or

  • as a query parameter (if provider requires).

When to use

  • Provider requires API key authentication

  • You need simple machine-to-machine auth without OAuth flow

Required fields in Nected

  • Key: field name, for example X-API-Key or api_key

  • Value: secret key provided by the external API owner

API Key configuration form

Format examples

Header style:

Query style:

Step-by-step setup

  1. 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.

  2. Select API Key.

  3. Add Key and Value.

  4. Save configuration.

  5. Attach/select this auth config in the integration/API request step.

  6. Test against the provider endpoint.

Validation checklist

  • Key name matches provider docs exactly.

  • Placement matches provider requirement (header/query).

  • Key value has no extra characters.

Security considerations

  • Prefer header placement over query when supported.

  • Avoid logging full URLs if key is passed as query param.

  • Rotate and revoke keys regularly.

Common errors and fixes

  • 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