Skip to main content

Overview

Use the transitLines parameter in search endpoints to filter listings near specific subway or regional rail lines. Pass values as a comma-separated string.
curl "https://borough.qwady.app/v1/search/rentals?transitLines=1,A,L&areas=100"
const results = await borough.rentals.search({
  transitLines: "1,A,L",
  areas: "100",
});

Available transit line values

Numbered lines

ValueLineRoute
11 trainVan Cortlandt Park (Bronx) to South Ferry (Manhattan)
22 trainWakefield (Bronx) to Flatbush Ave (Brooklyn)
33 trainHarlem (Manhattan) to New Lots Ave (Brooklyn)
44 trainWoodlawn (Bronx) to Crown Heights (Brooklyn)
55 trainEastchester (Bronx) to Flatbush Ave (Brooklyn)
66 trainPelham Bay Park (Bronx) to Brooklyn Bridge (Manhattan)
77 trainFlushing (Queens) to Hudson Yards (Manhattan)

Letter lines

ValueLineRoute
AA trainInwood (Manhattan) to Far Rockaway / Ozone Park (Queens)
BB trainBedford Park (Bronx) to Brighton Beach (Brooklyn)
CC trainWashington Heights (Manhattan) to Euclid Ave (Brooklyn)
DD trainNorwood (Bronx) to Coney Island (Brooklyn)
EE trainJamaica (Queens) to World Trade Center (Manhattan)
FF trainJamaica (Queens) to Coney Island (Brooklyn)
GG trainCourt Square (Queens) to Church Ave (Brooklyn)
JJ trainJamaica (Queens) to Broad Street (Manhattan)
LL train8th Ave (Manhattan) to Canarsie (Brooklyn)
MM trainMiddle Village (Queens) to Bay Parkway (Brooklyn)
NN trainAstoria (Queens) to Coney Island (Brooklyn)
QQ train96th Street (Manhattan) to Coney Island (Brooklyn)
RR trainForest Hills (Queens) to Bay Ridge (Brooklyn)
SS shuttle42nd Street shuttle and other shuttles
WW trainAstoria (Queens) to Whitehall Street (Manhattan)
ZZ trainJamaica (Queens) to Broad Street (Manhattan) — rush hours

Regional rail

ValueLineService area
PATHPATH TrainManhattan to New Jersey (Hoboken, Jersey City, Newark)
HBLRHudson-Bergen Light RailBayonne to North Bergen, NJ
In addition to filtering by line, you can filter by transit accessibility score:
# Listings with excellent transit access
curl "https://borough.qwady.app/v1/search/rentals?minTransitScore=80"
Transit scores (0-100) are available on building detail responses via GET /v1/building/{id}/scores. The score is computed from MTA GTFS stop data based on:
  • Proximity (50 points) — distance to nearest subway/bus stop within 400m
  • Density (50 points) — number of stops within 400m radius
See Building Scores for details on how scores are computed.