Authentication
The globalMOO API uses API keys for authentication. To access the API, you'll need to include your API key in the authorization header of each request.
API Keys
API keys should be included in the Authorization
header of each request:
SDK Authentication
Environment Variables
The SDKs support loading credentials from environment variables:
GMOO_API_KEY
: Your API keyGMOO_API_URI
: API base URI (defaults to https://app.globalmoo.com/api/)
TLS Validation
The SDKs validate TLS certificates by default for security. This is required when using official globalmoo.ai domains but can be disabled for testing:
Security Best Practices
Keep your API key secure and never share it
Use environment variables to store API keys
Rotate API keys periodically
Use different API keys for development and production
Last updated