Fetch a real-estate agency’s full profile by its numeric id (from a listing’s
agency.id or its portal URL). Pair with
/agencies/{id}/listings
to pull the agency’s active inventory.
Path Parameters
Immobiliare agency id, e.g. 41235.
Query Parameters
Market the agency belongs to. One of it, es, gr, lu.
Response
The full AgencyProfile:
Agency profile URL on the portal.
Street address of the office.
Franchise / network affiliation, e.g. tecnocasa.
Echo of the requested market.
Example
const res = await fetch(
"https://api.scrapebadger.com/v1/immobiliare/agencies/41235?market=it",
{ headers: { "X-API-Key": process.env.SCRAPEBADGER_API_KEY } },
);
const agency = await res.json();
{
"id": 41235,
"type": "agency",
"name": "Tecnocasa Milano Crescenzago",
"url": "https://www.immobiliare.it/agenzie-immobiliari/41235/tecnocasa-milano/",
"address": "Via Padova 130, 20127 Milano",
"description": "Affiliato Tecnocasa attivo dal 2003 nella zona Cimiano-Crescenzago. Compravendite e locazioni residenziali, valutazioni gratuite.",
"website": "https://milano-crescenzago.tecnocasa.it",
"image": "https://pic.im-cdn.it/agency/41235/large.png",
"is_paid": true,
"partnership": "tecnocasa",
"real_estate_ads": 48,
"real_estate_sales": 312,
"region": "Lombardia",
"province": "Milano",
"city": "Milano",
"macrozone": "Cimiano, Crescenzago, Adriano",
"latitude": 45.498,
"longitude": 9.2301,
"phones": ["+39 02 2846120", "+39 02 2846121"],
"opening_hours": [
"Mon-Fri 09:00-13:00, 14:30-19:00",
"Sat 09:00-12:30"
],
"agents": [
{
"id": 998877,
"name": "Marco",
"surname": "Rossi",
"gender": "male",
"thumbnail": "https://pic.im-cdn.it/agent/998877/thumb.jpg"
},
{
"id": 998878,
"name": "Giulia",
"surname": "Bianchi",
"gender": "female",
"thumbnail": "https://pic.im-cdn.it/agent/998878/thumb.jpg"
}
],
"market": "it"
}
Each agency-profile request costs 5 credits. Failed requests are not charged.