Getting Started
Get up and running with the Straply property data API in under 5 minutes.
1. Create an account
Section titled “1. Create an account”Sign up for a free account at straply.com. No credit card required.
2. Get your API key
Section titled “2. Get your API key”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.
3. Make your first request
Section titled “3. Make your first request”Use your API key to fetch properties in a ZIP code:
curl https://api.straply.com/v1/properties?zipCode=90210&status=forSale \ -H "Authorization: Bearer stp_live_YOUR_KEY"4. Explore the response
Section titled “4. Explore the response”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" } ]}Next steps
Section titled “Next steps”- Browse the Properties endpoint reference for all available fields and filters
- Learn about authentication and API key management
- Review rate limits for your plan