Discover/WeWork API
live

WeWork APIWeWork.com

Search WeWork markets, list buildings by space type, and fetch per-building details including amenities, staffed hours, and product pricing via the WeWork API.

This API takes change requests — .
Endpoint health
verified 2h ago
search_markets
search_locations
get_location
3/3 passing latest checkself-healing
Endpoints
3
Updated
3h ago

What is the WeWork API?

The WeWork API exposes 3 endpoints covering WeWork's global inventory of coworking spaces, private offices, and meeting rooms. Starting with search_markets, you can resolve any city or neighborhood name to a place slug, then pass that slug to search_locations to retrieve a list of buildings with product cards and starting prices, and finally drill into individual buildings with get_location to access addresses, coordinates, amenities, staffed hours, and bookability status for every product offered on-site.

This call costs10 credits / call— charged only on success
Try it
Maximum number of places to return, 1-50.
City, area, or neighborhood name to look up (e.g. london).
api.parse.bot/scraper/3baa0db9-08cc-4eff-984e-a0e8a263e18d/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/3baa0db9-08cc-4eff-984e-a0e8a263e18d/search_markets?query=london' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalmissing one? ·

Free-text place lookup over WeWork's published geography (markets, submarkets, neighborhoods). Returns matching places ordered by relevance, each with a slug that search_locations accepts; results are a single page bounded by limit and include the place's child areas. An unknown query yields an empty places array (total 0).

Input
ParamTypeDescription
limitintegerMaximum number of places to return, 1-50.
queryrequiredstringCity, area, or neighborhood name to look up (e.g. london).
Response
{
  "type": "object",
  "fields": {
    "query": "the query as searched",
    "total": "integer total number of matching places on the site (may exceed the returned page)",
    "places": "array of matching places: slug (use as search_locations.slug), name, type (Marketgeo | Submarket | Neighborhood), parent_name, latitude, longitude, children (array of {name, slug, type} sub-areas)"
  },
  "sample": {
    "data": {
      "query": "london",
      "total": 41,
      "places": [
        {
          "name": "London",
          "slug": "london",
          "type": "Marketgeo",
          "children": [
            {
              "name": "West End",
              "slug": "west-end--london",
              "type": "Submarket"
            }
          ],
          "latitude": 51.5397853416793,
          "longitude": -0.147996159644023,
          "parent_name": "United Kingdom"
        }
      ]
    },
    "status": "success"
  }
}

About the WeWork API

Finding Markets and Places

The search_markets endpoint accepts a free-text query (e.g. "london" or "brooklyn") and returns an array of matching places, each with a slug, name, geographic type (Marketgeo, Submarket, or Neighborhood), parent_name, and lat. The total field reflects the full count of matches on WeWork's side, while the returned page is bounded by the optional limit parameter (1–50). The slug from any result feeds directly into search_locations.

Listing Buildings by Space Type

search_locations takes a slug from search_markets and an optional space_type filter (coworking, private_office, or meeting_room) to return the buildings WeWork surfaces for that combination. Each entry in the locations array includes building_slug, building_id, name, city, market_name, and market_id. The count_text field mirrors the label WeWork itself shows for the result set. The building_slug from any location passes directly to get_location.

Building Detail and Product Cards

get_location returns the full profile for a single building: address, latitude/longitude, telephone, image_url, a list of amenities by name, and staffed_hours per weekday. The products array covers every space product offered at that building — Day Pass, Meeting Rooms, Private Office, and others — each with name, description, price_text, list_price, current_price, and a bookable_online boolean. Where a product supports WeWork On Demand booking, the nested on_demand_booking object provides booking_type and location_id.

Reliability & maintenanceVerified

The WeWork API is a managed, monitored endpoint for WeWork.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when WeWork.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official WeWork.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2h ago
Latest check
3/3 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build a coworking space finder that maps WeWork locations by city using coordinates from get_location
  • Compare day-pass starting prices across multiple markets by combining search_locations and get_location
  • Check which WeWork buildings offer on-demand online booking via the bookable_online flag on each product card
  • Aggregate amenity data across buildings in a submarket to identify which offices offer specific facilities
  • Generate a directory of WeWork meeting rooms in a neighborhood using the meeting_room space type filter
  • Track staffed hours per weekday across buildings to surface locations open on weekends or evenings
  • Enrich a CRM or travel tool with WeWork building addresses and phone numbers for a given city slug
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does WeWork have an official developer API?+
WeWork does not publish a public developer API or documented API program for external developers. Access to building inventory, pricing, and availability data is not available through any official third-party integration.
What does `search_locations` return, and how does the `space_type` filter affect results?+
It returns an array of WeWork buildings for a given place slug. Setting space_type to coworking, private_office, or meeting_room filters both the building set and the product cards shown per building to those relevant to that space type. Without a space_type, results reflect WeWork's default view for the place.
Does `get_location` include real-time availability or booking calendars?+
No. get_location returns static product listings with starting prices and a bookable_online flag, but it does not include live availability, calendar slots, or occupancy data. The on_demand_booking object provides identifiers that indicate a product supports online booking, but the booking flow itself is not part of this API. You can fork it on Parse and revise to add an availability endpoint if WeWork exposes that data in a queryable form.
How deep is the geographic coverage — does it cover all WeWork markets globally?+
search_markets queries WeWork's published geography, which mirrors what WeWork lists on its own site. Coverage is limited to cities and submarkets where WeWork actively operates. Locations in markets WeWork has exited or not yet entered will not appear in results.
Does the API return member pricing or discounted rates in addition to list prices?+
Each product card includes both list_price and current_price fields where available, but member-tier pricing, negotiated rates, or promotional discounts are not exposed. The prices reflect WeWork's publicly visible starting rates. You can fork the API on Parse and revise it to surface additional pricing tiers if WeWork makes those available in its public-facing data.
Page content last updated . Spec covers 3 endpoints from WeWork.com.
Related APIs in Real EstateSee all →
cbre.com API
Search CBRE's commercial real estate listings by location, property type, and transaction (lease or sale) to find available properties and spaces that match your criteria. Access detailed property information including pricing, agent contacts, and specific space details to evaluate investment or leasing opportunities.
peerspace.com API
Search and explore Peerspace venue listings by location and activity type. Retrieve paginated search results with pricing, ratings, capacity, and amenities, then fetch full listing details including equipment, host information, and availability.
opendoor.com API
Search for homes on Opendoor across US markets and instantly access listing prices, addresses, and detailed property information to compare available options. Use the data to find properties that match your criteria and get comprehensive details on homes you're interested in.
rent.com API
Browse and extract rental property data from Rent.com. Search listings by location and filter by beds, baths, price, and pet policy. Retrieve full property details, floor plans, unit availability, amenities, nearby schools, points of interest, and active specials.
realtor.com API
Search millions of real estate listings on Realtor.com, view detailed property information, find qualified agents in your area, and access market analytics to understand pricing trends. Get location suggestions and property insights all in one place to help you make informed decisions about buying, selling, or investing in real estate.
realcommercial.com.au API
Search commercial property listings across Australia, view detailed property information, and stay updated with the latest real estate market news all from one platform. Find investment opportunities, compare properties, and read industry insights to make informed decisions in the commercial property market.
loopnet.com API
Access LoopNet's commercial real estate data programmatically. Search listings by location, property type, and transaction type; retrieve full listing details including pricing and property facts; and find and profile commercial real estate brokers.
housing.com API
Search and retrieve real estate listings on Housing.com. Browse properties for sale, rent, plots, and commercial spaces across major Indian cities with filtering by locality and property type.