EmbedEarth (E2)
EmbedEarth (E2) is the flagship spatial intelligence layer built by Outerview. Unlike traditional GIS tools that rely on static databases, E2 provides a live, semantic understanding of the physical world.
Core Capabilities
- Real-time agent-based simulation
- Natural language spatial queries
- High-fidelity geofencing and polygon math
Authentication
Authentication for E2 is handled via the central Outerview Identity Provider. You must generate a secret key from your dashboard to sign your requests.
Log in to Outerview
Navigate to the main portal at Outerview.ai and sign in with your enterprise credentials.
Access Account Settings
Click on your profile avatar in the top right and select Account from the dropdown menu.
Generate Secret Key
Locate the API Access section. Click "Generate New Key". Copy this string immediately—it will not be shown again.
Authorization: Bearer sk_live_...
Pricing & Usage
EmbedEarth uses a credit-based system. Credits are purchased via the Outerview dashboard and consumed based on query complexity and compute duration.
Hobby
For testing and small apps.
Free- • 1,000 requests / mo
- • Standard latency
Pro
For production workloads.
$0.002 / call- • Unlimited requests
- • Priority GPU access
- • Custom Geofencing
Search
Retrieve geospatial entities, addresses, or points of interest based on natural language queries or raw coordinates.
Parameters
{
"status": 200,
"data": [
{
"id": "loc_8923",
"name": "Hyde Park Coffee Co.",
"coordinates": {
"lat": 51.5072,
"lng": -0.1276
},
"category": "hospitality",
"confidence": 0.98
}
]
}Answer
Leverage our GIS-tuned LLM to answer complex spatial questions involving topology, demographics, or environmental data.
Parameters
{
"status": 200,
"answer": "Based on the topography, the northern ridge offers the optimal line-of-sight for the proposed antenna array.",
"sources": [
"elevation_model_v2",
"land_use_registry"
],
"meta": {
"processing_time": "420ms"
}
}Fence
Determine if a specific coordinate or set of coordinates falls within defined custom polygon boundaries (Geofencing).
Parameters
{
"in_bounds": true,
"polygon_id": "poly_zone_a",
"distance_to_edge_meters": 14.5,
"timestamp": "2024-01-15T12:00:00Z"
}Simulate
Run agent-based simulations for traffic flow, crowd movement, or environmental changes over a specified duration.
Parameters
{
"simulation_id": "sim_9921_alpha",
"status": "queued",
"estimated_completion": "12s",
"preview_url": "https://api.interstar.io/render/sim_9921.mp4"
}