Quick Start

Get up and running with the PriceLabs Customer API in under 5 minutes.

1. Generate your API key

Need the full walkthrough with screenshots, or want to grant access to team members? See Enable the API.

2. Verify your API key

Call GET /v1/listings_minimal — it returns a lightweight catalog of your listings and their channel/OTA IDs, so it’s fast even on large accounts and a good first request to confirm your key works. Enter your API key below and run it right from these docs.

A working key returns something like (sample data shown below):

{
"listings": [
{
"listing_id": "1234567",
"pms_name": "hostaway",
"listing_name": "Sunset Villa",
"property_name": "Sunset Villa",
"parent_key": 0,
"group_id": null,
"channel_listing_details": [
{ "channel_name": "airbnb", "channel_listing_id": "000000000000000001" },
{ "channel_name": "vrbo", "channel_listing_id": "00000001" }
]
}
],
"total_listings": 1
}
Getting a 403 instead?

A 403 with API_KEY_INVALID means the header is missing or the key is wrong. Double-check you’re sending it as X-API-Key and that the API is enabled for your account (step 1).

Next steps