1

Get Your API Credentials

Contact support@nomos.energy to get your OAuth 2.0 client credentials (client_id and client_secret).
Keep your credentials secure! Never commit them to code repositories or share them publicly.
3

Make Your First Request

All API requests are made to:
https://api.nomos.energy
Authenticate by exchanging your credentials for an access token:
curl -X POST https://api.nomos.energy/oauth/token \
  -H "Authorization: Basic $(echo -n '${CLIENT_ID}:${CLIENT_SECRET}' | base64)" \
  -d grant_type=client_credentials
Replace ${CLIENT_ID} and ${CLIENT_SECRET} with your actual client credentials from step 1.
4

Next Steps

Congratulations! You’ve made your first Nomos API request. Here’s what you can explore next:
  • Browse our API endpoints
  • Check out integration guides
  • Read our authentication docs
Need help? Contact us at support@nomos.energy