Authentication
Authentication
Authenticate requests using API keys in the Authorization header.
All external API endpoints use Bearer token authentication.
#Base URL
https://api.eireplan.ie
#Authorization Header
http
Authorization: Bearer ek_your_api_key_here#Example Request
curl "https://api.eireplan.ie/ext/v1/knowledge/docs?limit=10" \
-H "Authorization: Bearer ek_your_api_key_here"#Best Practices
- Keep keys server-side where possible.
- Never embed production keys in public frontend code.
- Rotate keys if exposed.
- Use separate keys per environment and integration.