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):

1{
2 "listings": [
3 {
4 "listing_id": "1234567",
5 "pms_name": "hostaway",
6 "listing_name": "Sunset Villa",
7 "property_name": "Sunset Villa",
8 "parent_key": 0,
9 "group_id": null,
10 "channel_listing_details": [
11 { "channel_name": "airbnb", "channel_listing_id": "000000000000000001" },
12 { "channel_name": "vrbo", "channel_listing_id": "00000001" }
13 ]
14 }
15 ],
16 "total_listings": 1
17}
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