---
title: "Atlasly API — Site Intelligence For Your Product"
description: "Embed Atlasly's 17-step site intelligence pipeline into your PropTech, architecture, or urban planning product via REST API. 100 calls/month on Pro, 1,000 on Teams, custom on Enterprise."
canonical: https://atlasly.app/solutions/api-integration
primary_keyword: "site analysis API"
target_query: "site analysis API for architecture software"
intent: commercial
---

# Atlasly API

> Embed Atlasly's 17-step site intelligence pipeline directly into your PropTech, architecture, or urban planning product. One REST call returns the full evidence stack — planning, flood, heritage, ecology, topography, transport, climate — as structured JSON.

## Quick Answer

**Is there an API for automated site analysis I can plug into my product?** Yes — the Atlasly API returns the complete 17-step site intelligence output as JSON for any address. Used by AEC firms for batch screening, PropTech platforms for listings, and academic institutions for research. 100 calls/month on Pro (£14.99), 1,000 on Teams (£49.99), custom on Enterprise.

## What The API Returns

One call to `POST /api/v1/site-analysis` with `{address}` or `{boundary}` returns:

```json
{
  "site_id": "...",
  "boundary": { "type": "FeatureCollection", ... },
  "planning": { "zones": [...], "nppf_citations": [...], "local_plan": [...] },
  "flood": { "zones": [...], "surface_water_risk": "..." },
  "heritage": { "listed_buildings": [...], "conservation_areas": [...] },
  "ecology": { "sssi": [...], "ancient_woodland": [...] },
  "topography": { "min_elevation": ..., "max_elevation": ..., "slope_stats": {...} },
  "transport": { "ptal": ..., "isochrones_geojson": {...} },
  "microclimate": { "solar": {...}, "wind": {...}, "rainfall": {...} },
  "buildings": [...],
  "land_registry": { "titles": [...] },
  "share_url": "https://atlasly.app/site-package/...",
  "exports": {
    "dxf": "https://...",
    "dwg": "https://...",
    "ifc": "https://...",
    "pdf": "https://..."
  }
}
```

## Who Uses The API

- AEC firms running batch site screening (compare 50 acquisition sites overnight)
- PropTech platforms enriching listings with site intelligence
- Local authorities building internal dashboards
- Universities running site-level research
- Developer internal tools at mid/large architecture practices

## Endpoints

- `POST /api/v1/site-analysis` — run pipeline
- `GET /api/v1/site/:id` — retrieve cached result
- `GET /api/v1/site/:id/export/:format` — download CAD/BIM export
- `POST /api/v1/compliance/check` — NPPF + local plan compliance scan on a proposal
- `POST /api/v1/walkability` — 15-min city score alone
- `POST /api/v1/flood` — flood-only endpoint
- `GET /api/v1/usage` — quota tracking

## Pricing

- **Pro (£14.99/mo)** — 100 API calls/month
- **Teams (£49.99/mo)** — 1,000 API calls/month
- **Enterprise** — custom quota, SLA, dedicated support, private deployment options

## Common Questions

**What's the response time?** Typically 45-90 seconds per new site (runs the full 17-step pipeline). Sub-second for cached sites within your account.

**Can I cache results?** Yes — repeat calls for the same site within 30 days return cached data at no quota cost.

**What authentication?** Bearer token via API key generated in your account settings.

**Is there a rate limit?** Pro: 10 concurrent / 100 monthly. Teams: 20 concurrent / 1,000 monthly. Enterprise: configurable.

**Do you have an SDK?** JavaScript/TypeScript SDK available. Python SDK on request.

**Can I white-label the share links?** Teams plan supports custom subdomain.

**Is there a webhook for completion?** Yes — configure webhook URL per API key.

## Links

- Sign up + get API key: https://atlasly.app/auth
- Pricing: https://atlasly.app/pricing
- API reference: https://atlasly.app/resources/api
- Related blog: https://atlasly.app/blog/site-analysis-api-for-architecture-firms-batch-screening-sites-without-building-another-internal-tool
