Quick Start
Get started with Voseno API in minutes.
This guide will help you make your first API request.
Prerequisites
Section titled “Prerequisites”- A Voseno account
- An API Key
Make a Search Request
Section titled “Make a Search Request”Here is how you can search for rental properties in Amsterdam.
curl -X GET 'https://api.voseno.com/v1/listings/search?city=Amsterdam&type=rental' \ -H 'Authorization: Bearer YOUR_API_KEY'Response
Section titled “Response”{ "data": [ { "id": "listing_abc123", "address": { "street": "Prinsengracht", "number": 200, "city": "Amsterdam" }, "price": 2500, "url": "https://..." } ], "meta": { "total": 150, "page": 1 }}