Zillow API

Zillow Agent API

Fetch one Zillow real estate agent's profile by URL: name, phone, email, brokerage, rating, review count, sales, and service areas.

POST/v1/run/zillow.agent
Requests
-
30d

Provider network

Providers ranked by traffic

Providers
BadgerTried first- served- uptime- p50-$0.50/1k reqflatOctopus- served- uptime- p50-$8.69/1k reqflat

Try it

Make your first request

Open in
Get a free key
Sample response
Free runs return only the first 3 results. Fund a key to get the full response.
{
  "data": {
    "bio": "A short example description of this item.",
    "company": "Acme Inc",
    "email": "alex@example.com",
    "forSaleCount": 12500,
    "image": "https://example.com/image.jpg",
    "isTopAgent": true,
    "name": "Example title",
    "phone": "+1 555-0142",
    "rating": 4.6,
    "reviewCount": 12500,
    "serviceAreas": [
      "example"
    ],
    "totalSales": 12500,
    "url": "https://example.com/page",
    "username": "alex_rivera"
  },
  "found": true,
  "reason": "not_found"
}
Response interface
interface ZillowAgentResponse {
  data: {
    bio?: string;
    company?: string;
    email?: string;
    forSaleCount?: number;
    image?: string;
    isTopAgent?: boolean;
    name: string;
    phone?: string;
    rating?: number;
    reviewCount?: number;
    serviceAreas?: string[];
    totalSales?: number;
    url: string;
    username: string;
  } | null;
  found: boolean;
  reason?: "not_found";
}

Full parameter and response reference - every field, type, and example for this endpoint.

Reference

Request, response, and price

Last verified 2026-09-25 · uptime and latency measured over 30d
POST /v1/run/zillow.agent
curl -X POST https://api.getanyapi.com/v1/run/zillow.agent \
  -H "Authorization: Bearer $ANYAPI_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url":"https://www.zillow.com/profile/gregorycarlsonATX/"}'
FieldTypeExample value
Request body
urlstring"https://www.zillow.com/profile/gregorycarlsonATX/"Zillow agent profile URL (e.g. https://www.zillow.com/profile/gregorycarlsonATX/).
Response
dataobjectThe agent's profile, or null when the URL resolved to no agent.
data.biostringAgent's self-written biography, as HTML.
data.companystringBrokerage or business name the agent works under. Populated whenever the provider has data for the entity.
data.emailstringAgent's email address as listed on the profile. Populated whenever the provider has data for the entity.
data.forSaleCountintegerNumber of active for-sale listings.
data.imagestringProfile photo URL. Populated whenever the provider has data for the entity.
data.isTopAgentbooleanTrue when Zillow flags the agent as a top agent.
data.namestringAgent's full name. Populated whenever the provider has data for the entity.
data.phonestringAgent's phone number as listed on the profile (the cell number when one is listed). Populated whenever the provider has data for the entity.
data.ratingnumberAverage review rating out of 5.
data.reviewCountintegerNumber of reviews on the profile.
data.serviceAreasstring[]Cities and areas the agent lists as served, e.g. "Austin, TX".
data.totalSalesintegerTotal sales on record for the agent (for a team lead, the team's total).
data.urlstringCanonical Zillow profile URL. Populated whenever the provider has data for the entity.
data.usernamestringZillow screen name, the last segment of the profile URL. Populated whenever the provider has data for the entity.
foundbooleanTrue when the agent profile was found.
reason"not_found"Present only when `found` is false, and says why there is no result. `not_found`: the source states the target does not exist, or returned nothing for it. A `found: false` answer is a successful call, not an error, and `costUsd` is what it actually cost.
Price
Price per requestUSD$0.0005
Price /1k reqUSD$0.50

FAQ

About the Zillow Agent API

The AnyAPI Zillow Agent API returns Zillow agent data as normalized JSON from one POST call to /v1/run/zillow.agent. Fetch one Zillow real estate agent's profile by URL: name, phone, email, brokerage, rating, review count, sales, and service areas. AnyAPI routes each request across 2 sources and falls back automatically when one fails. It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum.

It costs from $0.50 per 1,000 requests, in US dollars with no subscription and no monthly minimum. You fund one USD wallet, each call draws it down, and a failed request costs $0.

Fetch one Zillow real estate agent's profile by URL: name, phone, email, brokerage, rating, review count, sales, and service areas. The response is normalized JSON with the same envelope every AnyAPI endpoint returns, so parsing a second endpoint is a change of URL and nothing else.