Retrieving your API key…
Confirming your checkout with Stripe.
!
Something went wrong
We couldn't retrieve your API key. Please contact support.
Checkout complete · Account active
Your API key
Use this key as a header for api.vitkidata.com/api/v1. Store it somewhere safe.
Save this key — you won't see it again
Quick start
curl "https://api.vitkidata.com/api/v1/properties?state=TX&city=Austin&limit=5" \
-H "X-Api-Key: vtk_live_..."
import requests
resp = requests.get(
"https://api.vitkidata.com/api/v1/properties",
headers={"X-Api-Key": "vtk_live_..."},
params={"state": "TX", "city": "Austin", "limit": "5"}
)
print(resp.json())
const resp = await fetch(
"https://api.vitkidata.com/api/v1/properties?state=TX&city=Austin&limit=5",
{ headers: { "X-Api-Key": "vtk_live_..." } }
);
const data = await resp.json();
console.log(data);