Skip to content

Getting Started

Get up and running with the Straply property data API in under 5 minutes.

Sign up for a free account at straply.com. No credit card required.

After signing in, navigate to the Dashboard and copy your API key. Keys are prefixed with stp_live_ for production and stp_test_ for sandbox.

Keep your API key secure. Do not commit it to version control or share it publicly.

Use your API key to fetch properties in a ZIP code:

Terminal window
curl https://api.straply.com/v1/properties?zipCode=90210&status=forSale \
-H "Authorization: Bearer stp_live_YOUR_KEY"

The API returns a JSON response with a meta object for pagination and a data array of property objects:

{
"meta": {
"total": 47,
"limit": 25,
"offset": 0
},
"data": [
{
"id": "stp_a3f7c2e91b4d",
"status": "forSale",
"listPrice": 1850000,
"address": {
"streetAddress": "742 Evergreen Terrace",
"city": "Beverly Hills",
"state": "CA",
"zipCode": "90210"
},
"bedroomsTotal": 4,
"bathroomsTotal": 3.5,
"livingArea": 3200,
"lotSize": 8500,
"yearBuilt": 1985,
"propertyType": "singleFamily",
"daysOnMarket": 12,
"priceHistory": [
{
"date": "2026-02-15",
"event": "listed",
"price": 1850000,
"source": "MLS"
}
],
"taxHistory": [
{
"year": 2025,
"taxPaid": 18200,
"assessedValue": 1620000
}
],
"scores": {
"walkability": 82,
"transit": 65,
"bike": 71
},
"coordinates": {
"latitude": 34.0901,
"longitude": -118.4065
},
"lastUpdated": "2026-03-09T08:00:00Z"
}
]
}