Getting a key
API keys are issued by The Data City. A key:- Starts with
dm_live_ - Is shown in full once at creation — store it immediately
- Can be revoked; revoked keys return
401
Using the key
Add anAuthorization header to every match request:
Treat your API key like a password. Store it in an environment variable or secrets manager. Never check it into source control or include it in client-side code.
What the key is not
Dashboard login uses a separate OAuth2 password flow (POST /api/v1/login/access-token) and returns a JWT. That JWT is for the admin UI and administrative APIs. Match calls must use a dm_live_… API key.
If you send a JWT to /match, expect 401.
Failure modes
See Errors for the full status-code matrix.