Getting Started
Set up your first API key and make your first request.
Eireplan API gives you access to planning precedents and policy knowledge endpoints from your own tools.
#Quick Start
- Create an API key in your Eireplan Hub account under API.
- Store the key securely (it is shown once on creation).
- Send requests to
https://api.eireplan.ie/ext/v1/...with a Bearer token.
#First Request
curl "https://api.eireplan.ie/ext/v1/precedents?limit=5" \
-H "Authorization: Bearer ek_your_api_key_here"#Response Format
Most list endpoints return objects with:
itemsor resource arrays- pagination hints (for endpoints that support pagination)
- stable IDs you can use for detail endpoints
Continue with Authentication and Endpoints to implement your integration end to end.