API Keys

The API Keys tab manages the keys associated with your workspace.

  • Each new workspace receives one system-generated key

  • All workspaces can have multiple API keys, but must always have at least one active key

  • Users can add and delete API keys, as well as whitelisting domains and IPv4 addresses if they so choose.

Every request requires an API key.

You may authenticate in two ways:

  1. Embed the key in the URL:

curl "https://lb.nodies.app/v2/<network-name>?apikey=<your-api-key>" \
-X POST \
-H "Content-Type: application/json" \
  1. Pass the key as a header:

curl https://lb.nodies.app/v2/<network-name> \
-X POST \
-H "x-api-key: <api_key_value>" \
-H "Content-Type: application/json" \

Last updated