Programmatic access to global renewable energy project data, signals, and insights. Authenticate with an API key and start querying in seconds.
All API requests require authentication via either an API key or a Bearer token. API keys can be created in your account settings.
curl -H "X-API-Key: rem_sk_live_xxxxx" \ "https://api-production-475d.up.railway.app /api/v1/projects"
curl -H "Authorization: Bearer eyJhbGciOi..." \ "https://api-production-475d.up.railway.app /api/v1/projects"
Each API response includes headers with plan information and rate limit status.
| Header | Description |
|---|---|
| X-Plan | Your current plan name (free, pro, team, enterprise). |
| X-RateLimit-Limit | Maximum projects per request for your plan. |
| X-Total-Count | Total matching results (for paginated endpoints). |
Core endpoints for accessing project data, signals, and insights. See the for complete request/response schemas.
A typical response from the projects endpoint.
{ "projects": [ { "id": 1042, "name": "Darling Downs Solar Farm", "country": "Australia", "region": "Queensland", "capacity_mw": 142, "project_type": "solar", "stage": "construction", "confidence_score": 0.94, "latitude": -27.564, "longitude": 151.832, "developer": "CleanCo Queensland", "signal_count": 12, "first_seen": "2025-09-14T08:22:00Z", "last_updated": "2026-03-10T14:05:00Z" } ], "total": 847, "page": 1, "per_page": 25 }
Create an account and generate your API key to start querying project data.