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
Try it
Make your first request
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 30dPOST /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/"}'| Field | Type | Example value |
|---|---|---|
| Request body | ||
| url | string | "https://www.zillow.com/profile/gregorycarlsonATX/"Zillow agent profile URL (e.g. https://www.zillow.com/profile/gregorycarlsonATX/). |
| Response | ||
| data | object | The agent's profile, or null when the URL resolved to no agent. |
| data.bio | string | Agent's self-written biography, as HTML. |
| data.company | string | Brokerage or business name the agent works under. Populated whenever the provider has data for the entity. |
| data.email | string | Agent's email address as listed on the profile. Populated whenever the provider has data for the entity. |
| data.forSaleCount | integer | Number of active for-sale listings. |
| data.image | string | Profile photo URL. Populated whenever the provider has data for the entity. |
| data.isTopAgent | boolean | True when Zillow flags the agent as a top agent. |
| data.name | string | Agent's full name. Populated whenever the provider has data for the entity. |
| data.phone | string | Agent'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.rating | number | Average review rating out of 5. |
| data.reviewCount | integer | Number of reviews on the profile. |
| data.serviceAreas | string[] | Cities and areas the agent lists as served, e.g. "Austin, TX". |
| data.totalSales | integer | Total sales on record for the agent (for a team lead, the team's total). |
| data.url | string | Canonical Zillow profile URL. Populated whenever the provider has data for the entity. |
| data.username | string | Zillow screen name, the last segment of the profile URL. Populated whenever the provider has data for the entity. |
| found | boolean | True 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 request | USD | $0.0005 |
| Price /1k req | USD | $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.