Skip to main content

Quickstart

This guide walks through creating an account, issuing an API key, and making the first request.

1. Sign up

  1. Open the Firmium dashboard.
  2. Create an account with your email address.
  3. Confirm the address via the link we send.

2. Get an API key

  1. Sign in to the dashboard.
  2. Go to API / Schnittstelle.
  3. Create an API key (Bearer token) and store it securely.
Note: Treat the key like a password. Do not commit it to source control.

3. First API request

Search companies

Example response:

4. Error handling

  • 401 Unauthorized: Token missing, invalid, or expired.
  • 403 Forbidden: Authenticated, but not allowed to access the resource.

5. Best practices

  • Never store API keys in source code or public repositories.
  • Rotate keys regularly and delete unused ones.
  • Respect the rate limits.
  • See Authentication for header details.

Next steps