Skip to content

Quick Start

Get started with Voseno API in minutes.

This guide will help you make your first API request.

  • A Voseno account
  • An API Key

Here is how you can search for rental properties in Amsterdam.

Terminal window
curl -X GET 'https://api.voseno.com/v1/listings/search?city=Amsterdam&type=rental' \
-H 'Authorization: Bearer YOUR_API_KEY'
{
"data": [
{
"id": "listing_abc123",
"address": {
"street": "Prinsengracht",
"number": 200,
"city": "Amsterdam"
},
"price": 2500,
"url": "https://..."
}
],
"meta": {
"total": 150,
"page": 1
}
}