Read a single listing by its canonical listing_number.
Returns the listing plus a compact sections_summary and a nullable scheduled_appointment block. Agency-scoped: returns 404 (NOT 403) when the listing exists but belongs to a different agency, to avoid leaking existence across agency boundaries.
| Method | Path |
|---|---|
GET | /api/v1/listings/{listing_number} |
Primary host: https://valara.cloud (legacy alias: https://dash.jacoballenmedia.com).
Parameters
| Name | In | Required | Type | Description |
|---|---|---|---|---|
listing_number | path | yes | string |
Request body
(no request body)
Response
null
Responses
| Status | Description |
|---|---|
200 | Successful Response |
422 | Validation Error (see error codes) |
Examples
curl
curl -X GET "https://valara.cloud/api/v1/listings/{listing_number}" \
-H "Authorization: Bearer $VALARA_API_KEY" \
-H "Content-Type: application/json"
Python
import os
import uuid
import httpx
res = httpx.request(
"GET",
"https://valara.cloud/api/v1/listings/{listing_number}",
headers={
"Authorization": f"Bearer {os.environ['VALARA_API_KEY']}",
"Content-Type": "application/json",
},
)
res.raise_for_status()
print(res.json())