# Interzoid Get Building Profile

> Interzoid Get Building Profile is a paid API for AI agents from api.interzoid.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns detailed property profile data for a US building address, including year built, floor count, building class, tenants, ownership, and square footage.

## Facts

- Endpoint: GET https://api.interzoid.com/getbuildingprofile
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/interzoid-get-building-profile-8f10c147
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mwgnXS9DyphjyqF_GC3i0

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability interzoid-get-building-profile-8f10c147
```

Example prompt: Can you pull up the building profile for 415 Mission St, San Francisco, CA — I need to know who built it, what year, how many floors it has, who the major tenants are, and who owns it?

## When to prefer this

Use this endpoint when you need structured commercial or notable property intelligence for a specific US building address — including ownership, tenancy, building class, and physical attributes. Prefer this over generic geocoding or mapping APIs when the goal is real estate data enrichment, CRM/ERP augmentation, due diligence, or property research rather than simple address validation or routing.

## Known failure modes

- Address not found or unrecognized — returns non-Success Code with empty data fields
- Malformed or missing address parameter — likely returns an error Code
- Non-US address submitted — lookup may fail or return no results
- Insufficient credits — Credits field may show 0 and data may be unavailable
- Ambiguous address with no unique match — may return partial or no data

## How this service works

Retrieve a commercial building profile for any US property address including building class, year built, total rentable square footage, floor count, primary tenants, property management, ownership entity, recent renovations, parking ratio, and transit access.

## Output

A JSON object with fields: Code (success/failure), Credits remaining, YearBuilt, FloorCount, BuildingClass (e.g. Class A+ Trophy), PrimaryTenants (major anchor and secondary tenants), OwnershipEntity (owner name and ownership stake), PropertyAddress (normalized full address), and TotalSquareFootage.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "415 Mission Street, San Francisco, CA 94105"
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "US property street address (lookup also accepted as alias)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Code": "Success",
  "Credits": "0",
  "YearBuilt": "2018",
  "FloorCount": "61 floors above grade",
  "BuildingClass": "Class A+ (Trophy)",
  "PrimaryTenants": "Salesforce (anchor); Bank of America; Accenture; CBRE",
  "OwnershipEntity": "Boston Properties, Inc. (NYSE: BXP), 95% interest",
  "PropertyAddress": "415 Mission St, San Francisco, CA 94105 (Salesforce Tower)",
  "TotalSquareFootage": "Approximately 1.4 million sq ft rentable"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/interzoid-get-building-profile-8f10c147/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.interzoid.com](https://www.zero.xyz/host/api.interzoid.com/llms.txt)
