Skip to main content

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.

MethodPath
GET/api/v1/listings/{listing_number}

Primary host: https://valara.cloud (legacy alias: https://dash.jacoballenmedia.com).

Parameters

NameInRequiredTypeDescription
listing_numberpathyesstring

Request body

(no request body)

Response

null

Responses

StatusDescription
200Successful Response
422Validation 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())

See also