Loading...
Preparing your dashboard
RenewTrack REST API v1.0
Programmatic access to US renewable energy project data, including deal financings, party information, league tables, market analytics, debt sizing calculations, comparable transaction analysis, ISO/RTO market data, and grid monitoring. Covers both European and North American markets.
Deals, Parties, League Tables, Analytics, Auctions, Comparable Analysis, Debt Sizing, Export, Watchlists, Alerts, News, Energy Charts, Market Data (LMP/Prices), Grid Monitor, and Generic v1 REST.
No authentication required in sandbox mode. Production use requires API key authentication.
Project data updated quarterly, financing data as deals close, auction data monthly.
Full spec available for download. Compatible with code generators and API clients.
https://renewtrack.vercel.app/apihttp://localhost:3000/apiimport requests
response = requests.get('https://renewtrack.vercel.app/api/deals', params={
'market': 'north_america',
'technology': 'solar',
'limit': 10
})
deals = response.json()
for deal in deals['data']:
print(f"{deal['name']} - {deal['capacity_mw']} MW")The API is publicly accessible during the evaluation period. No authentication is required.
Production endpoints require API key authentication via request header:
X-API-Key: your_api_key_hereExceeding limits returns 429 Too Many Requests.
List endpoints support cursor-based pagination. Control page size and offset with query parameters.
?page=1&limit=25Filter results by market, technology, status, country/state, and more. Multiple filters combine with AND logic.
?market=north_america&technology=solarSort results by any numeric or date field. Specify sort direction with the order parameter.
?sort=capacity_mw&order=desc{
"data": [...],
"meta": {
"page": 1,
"limit": 25,
"total": 142,
"totalPages": 6
}
}Loading API documentation...