Status: Available Now
Endpoint: POST /api/v1/market-data
Purpose: Retrieve market data for charging infrastructure within a defined geographical area
The geo-spatial search endpoint enables location-based analysis of electric vehicle charging infrastructure. You can search within a circular area defined by center coordinates and radius to get detailed market insights including utilization patterns, consumption data, and operational metrics.
POST /api/v1/market-data
Content-Type: application/json
x-api-key: your-api-key-here
{
"meta": {
"<keys as defined in contract>": "<values as defined in contract>"
},
"area": {
"type": "RADIUS", // Required: Must be "RADIUS"
"centerPoint": [longitude, latitude], // Required: [float, float] - GeoJSON format
"radiusInMeter": integer // Required: 1-3000 (max 3km)
},
"skip": integer, // Optional: Number of results to skip (default: 0)
"limit": integer // Optional: Results per page, 1-50 (default: 25)
}