The NextGen Energy Jobs API provides programmatic access to renewable energy job listings. The API is RESTful and returns data in JSON format.
https://nextgenenergyjobs.com/api/v1
Currently, the API is rate-limited but does not require authentication. Rate limit: 100 requests per minute per IP.
Retrieve job listings with optional filters.
GET /api/v1/jobs?industry=Solar+Energy&location=San+Francisco&page=1&limit=10
{ "data": [ { "id": "123", "basics": { "title": "Solar Installation Manager", "company": "SolarCo", "industry": { "primary": "Solar Energy", "focus": "Residential Installation" } } } ], "pagination": { "total": 45, "pages": 5, "current_page": 1, "per_page": 10 } }
The API is limited to 100 requests per minute per IP address. Rate limit information is included in the response headers:
For API support or to report issues, please contact api@nextgenenergyjobs.com