LiquidSpace
LiquidSpace's own city-listing pages — day-pass coworking pricing and availability across WeWork, Industrious, Regus/Spaces and independent operators in…
LiquidSpace's own city-listing pages — day-pass coworking pricing and availability across WeWork, Industrious, Regus/Spaces and independent operators in one place, read directly from the site's own embedded listing data, no browser.
Domain: liquidspace.com
Also known as: LiquidSpace, liquidspace.com
Prefer the capability
bowmark.coworking covers this provider and routes around it when it is having a bad day. Reach for this page when you need liquidspace.com specifically.
Call it directly
bowmark.providers.liquidspace.search(input: { city: string; state: string }): Promise<LiquidspaceWorkspaceRow[]>Functions
| Function | What it does |
|---|---|
search | Reads LiquidSpace's own city-listing page for state (a US state abbreviation, e.g. "NY") and city (e.g. "New York") and returns every workspace priced as a single-day coworking pass —… |
Types
interface LiquidspaceWorkspaceRow {
venueName: string;
venueAddress: string;
workspaceName: string; // e.g. "Coworking Daypass"
scenario: string | null; // LiquidSpace's own category label, e.g. "Coworking"
capacity: number | null;
priceAmount: string; // e.g. "$45"
priceAmountValue: number;
priceDescription: string; // "/day-pass" for every row this function returns
bookingUrl: string; // this workspace's own LiquidSpace page
latitude: number;
longitude: number;
averageRating: number | null;
ratesCount: number | null;
}Examples
// day-pass coworking options in New York, cheapest first
const rows = await bowmark.providers.liquidspace.search({ city: "New York", state: "NY" });
rows.sort((a, b) => a.priceAmountValue - b.priceAmountValue);
for (const r of rows.slice(0, 5)) log(`${r.venueName}: ${r.priceAmount}/day — ${r.bookingUrl}`);
return rows;Related
coworking | Coworking space day passes — the capability this provider backs. |