For the complete documentation index, see llms.txt. This page is also available as Markdown.

API Keys

Create, store, and safely hand out EyePop credentials

An EyePop API key is a long-lived secret (prefixed eyp_) that authenticates your requests. Create one in the dashboard and set it as EYEPOP_API_KEY on your server — the SDKs and CLI pick it up automatically.

export EYEPOP_API_KEY=eyp_...

Treat the key like a password: it belongs on your server, never in a browser or mobile app bundle.

Create a key

  1. In the dashboard, click the hamburger icon in the upper right.

  2. Select API Keys to see every key you own, and to create or delete keys.

  3. Click Create API Key, give it a memorable name (Starter Integration, My App Key), and click Create.

  4. Copy the key immediately — you cannot view it again. If you lose it, delete it and create a new one.

Next steps

  • Quickstart — put the key to work in a first inference

  • SDKs — call EyePop from Python or Node

  • CLI — open the CLI section in this site's navigation to use the key for scripts and CI

Last updated