Remtel
v1

API Documentation

Programmatic access to global renewable energy project data, signals, and insights. Authenticate with an API key and start querying in seconds.

Base URL
https://api-production-475d.up.railway.app
Authentication
X-API-Key header
Rate Limits
Plan-based scaling

Authentication

All API requests require authentication via either an API key or a Bearer token. API keys can be created in your account settings.

API Key (recommended for programmatic access)
curl -H "X-API-Key: rem_sk_live_xxxxx" \
  "https://api-production-475d.up.railway.app
/api/v1/projects"
Bearer Token (from login)
curl -H "Authorization: Bearer eyJhbGciOi..." \
  "https://api-production-475d.up.railway.app
/api/v1/projects"

Response Headers

Each API response includes headers with plan information and rate limit status.

HeaderDescription
X-PlanYour current plan name (free, pro, team, enterprise).
X-RateLimit-LimitMaximum projects per request for your plan.
X-Total-CountTotal matching results (for paginated endpoints).

Endpoints

Core endpoints for accessing project data, signals, and insights. See the for complete request/response schemas.

GET
/api/v1/projects
List projects with filtering, pagination, and plan-based limits.
countryproject_typestagemin_capacitymax_capacitypageper_page
GET
/api/v1/projects/{id}
Get a single project by ID with full details.
GET
/api/v1/projects/export/csv
Export filtered projects as CSV. Accepts the same filters as the list endpoint.
countryproject_typestage
GET
/api/v1/projects/export/geojson
Export filtered projects as GeoJSON for GIS integration.
countryproject_typestage
GET
/api/projects
List all projects (internal API). Supports search, type, and stage filters.
searchproject_typestagelimitoffset
GET
/api/signals
List ingested signals with pagination.
limitoffset
GET
/api/insights
Get AI-generated insights: trends, anomalies, LLM summaries.
insight_typelimit
GET
/api/sources
List tracked data sources with reliability tiers.

Example Response

A typical response from the projects endpoint.

GET /api/v1/projects?country=AU&type=solar
{
  "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
}

Ready to integrate?

Create an account and generate your API key to start querying project data.

Create Account