Atlas — Market Intelligence

Comp-set rates, occupancy, and revenue benchmarks for short-term-rental markets — exposed through the Repull API as /v1/markets and /v1/ai/pricing.

TL;DR

Atlas is the data partner that powers Repull's market endpoints. Subscribe to the markets you care about in your dashboard, then read benchmarks via the API. Every key has read access — only paid market subscriptions return live data for that city.

What Atlas is

Atlas is a vacation-rental market-intelligence product that ships comp-set pricing, occupancy, length-of-stay, revenue, and seasonality data for short-term-rental markets worldwide. Repull is the API surface — you call Repull, Repull serves Atlas data on Atlas' behalf and bills it through your existing workspace.

You don't need a separate Atlas account, separate keys, or a separate billing relationship. Subscribe in the Repull dashboard, get data through the Repull API.

Endpoints

EndpointReturns
GET /v1/markets/browseDiscover available markets — paginated catalog of cities with country, region, listing count, and a featured flag.
GET /v1/markets/{city}Deep-dive on a single city — comp listings, segments, ADR / RevPAR / occupancy, and revenue impact estimates.
POST /v1/ai/pricingPricing recommendations for a property using its market's comp set as the baseline. See AI Pricing.

Entitlement model

Markets are subscription-gated. You browse the catalog for free, subscribe to the cities you operate in, and the API returns full data only for subscribed markets.

  • GET /v1/markets/browse — open to every workspace.
  • GET /v1/markets/{city} — returns full data for subscribed cities, returns a paywall response (403 with market_not_subscribed) for everything else.
  • Subscribe and unsubscribe from the Markets dashboard.

Quickstart

# Browse the catalog (open to every workspace)
curl https://api.repull.dev/v1/markets/browse?limit=20 \
  -H "Authorization: Bearer sk_test_KEY" \
  -H "X-Workspace-Id: WS_ID"

# Subscribe via dashboard, then deep-dive a single city
curl https://api.repull.dev/v1/markets/austin-tx \
  -H "Authorization: Bearer sk_test_KEY" \
  -H "X-Workspace-Id: WS_ID"

Pairs with

  • Markets endpoint reference — request/response shapes, segment definitions, caching guidance.
  • AI Pricing — the consumer of Atlas data when you want a recommended nightly rate per property.
  • atlasdna.ai — the data product itself: methodology, coverage map, sample reports.
AI