← All Tools
Location Architect
Design RIBA-compliant URL architectures for multi-location and geo-targeted datasets. Multi-step wizard with country-aware rules for 9 country patterns.
1 Scope
2 Vertical
3 Depth
4 Generate
API Access
Generate location architectures programmatically via the BigDataSEO API:
curl -H "Authorization: Bearer bds_YOUR_KEY" \ "https://bigdataseo.com/api/v1/location-architect?country=us&services=plumbing,hvac&urlStyle=location-first"
Python example
import requests
resp = requests.get(
"https://bigdataseo.com/api/v1/location-architect",
params={"country": "us", "services": "plumbing,hvac"},
headers={"Authorization": "Bearer bds_YOUR_KEY"}
)
data = resp.json()
print(f"Total URLs: {data['totalUrls']}, RIBA Compliant: {data['ribaCompliant']}")