Skip to main content

API keys

All requests to the SkyMatch API require an API key. Pass your key in the request header:

Getting a key

During early access, API keys are provisioned manually. Email hello@skymatch.uk with a brief description of your platform and we’ll send you a key within 24 hours.
A self-serve key dashboard is coming soon. For now, just email us — we respond quickly.

Example authenticated request

Key security

Keep your API key private. Do not expose it in frontend JavaScript, public repos, or client-side code. Always make SkyMatch requests from your backend server.
  • Store your key as an environment variable (e.g. SKYMATCH_API_KEY)
  • Rotate your key immediately if you believe it has been compromised — email us and we’ll issue a new one

Environment variables

We recommend storing your key like this:
.env
Then referencing it in your code:
Node.js
Python