ATTOM · Capability

ATTOM Property API — Property

ATTOM Property API — Property characteristics, ownership, and address resolution. Self-contained Naftiko capability covering one ATTOM business surface.

ATTOM Property API — Property is a Naftiko capability published by ATTOM, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 3 operations across the GET method rooted at /v1/property.

The capability includes 3 read-only operations. Lead operation: ATTOM Get Property Detail. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include ATTOM, Property, and Real Estate.

Run with Naftiko ATTOMPropertyReal Estate

What You Can Do

GET
Getpropertydetail — ATTOM Get Property Detail
/v1/property/detail
GET
Getpropertysnapshot — ATTOM Get Property Snapshot
/v1/property/snapshot
GET
Searchpropertyaddress — ATTOM Search Properties By Address
/v1/property/address

MCP Tools

attom-get-property-detail

ATTOM Get Property Detail

read-only idempotent
attom-get-property-snapshot

ATTOM Get Property Snapshot

read-only idempotent
attom-search-property-address

ATTOM Search Properties By Address

read-only idempotent

Capability Spec

property-property.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ATTOM Property API — Property
  description: 'ATTOM Property API — Property characteristics, ownership, and address resolution. Self-contained
    Naftiko capability covering one ATTOM business surface.'
  tags:
  - ATTOM
  - Property
  - Real Estate
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    ATTOM_API_KEY: ATTOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: property-property
    baseUri: https://api.gateway.attomdata.com
    description: ATTOM Property — Property business capability. Self-contained, no shared references.
    resources:
    - name: property-detail
      path: /propertyapi/v1.0.0/property/detail
      operations:
      - name: getpropertydetail
        method: GET
        description: ATTOM Get Property Detail
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: AttomID
          in: query
          type: string
          description: ATTOM property identifier.
          required: false
        - name: address
          in: query
          type: string
          description: Full street address.
          required: false
    - name: property-snapshot
      path: /propertyapi/v1.0.0/property/snapshot
      operations:
      - name: getpropertysnapshot
        method: GET
        description: ATTOM Get Property Snapshot
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: AttomID
          in: query
          type: string
          required: false
        - name: address
          in: query
          type: string
          required: false
    - name: property-address
      path: /propertyapi/v1.0.0/property/address
      operations:
      - name: searchpropertyaddress
        method: GET
        description: ATTOM Search Properties By Address
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: address1
          in: query
          type: string
          required: false
        - name: address2
          in: query
          type: string
          required: false
    authentication:
      type: apikey
      key: apikey
      value: '{{env.ATTOM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: property-property-rest
    port: 8080
    description: REST adapter for ATTOM Property — Property.
    resources:
    - path: /v1/property/detail
      name: property-detail
      description: REST surface for property-detail.
      operations:
      - method: GET
        name: getpropertydetail
        description: ATTOM Get Property Detail
        call: property-property.getpropertydetail
        with:
          AttomID: rest.query.AttomID
          address: rest.query.address
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/property/snapshot
      name: property-snapshot
      description: REST surface for property-snapshot.
      operations:
      - method: GET
        name: getpropertysnapshot
        description: ATTOM Get Property Snapshot
        call: property-property.getpropertysnapshot
        with:
          AttomID: rest.query.AttomID
          address: rest.query.address
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/property/address
      name: property-address
      description: REST surface for property-address.
      operations:
      - method: GET
        name: searchpropertyaddress
        description: ATTOM Search Properties By Address
        call: property-property.searchpropertyaddress
        with:
          address1: rest.query.address1
          address2: rest.query.address2
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: property-property-mcp
    port: 9090
    transport: http
    description: MCP adapter for ATTOM Property — Property.
    tools:
    - name: attom-get-property-detail
      description: ATTOM Get Property Detail
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: property-property.getpropertydetail
      with:
        AttomID: tools.AttomID
        address: tools.address
      outputParameters:
      - type: object
        mapping: $.
    - name: attom-get-property-snapshot
      description: ATTOM Get Property Snapshot
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: property-property.getpropertysnapshot
      with:
        AttomID: tools.AttomID
        address: tools.address
      outputParameters:
      - type: object
        mapping: $.
    - name: attom-search-property-address
      description: ATTOM Search Properties By Address
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: property-property.searchpropertyaddress
      with:
        address1: tools.address1
        address2: tools.address2
      outputParameters:
      - type: object
        mapping: $.