ATTOM · Capability

ATTOM Community API — Community

ATTOM Community — neighborhood community profile (demographics, crime, weather, commute, education). Self-contained Naftiko capability covering one ATTOM business surface.

ATTOM Community API — Community is a Naftiko capability published by ATTOM, one of 11 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the GET method.

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

Tagged areas include ATTOM, Community, Neighborhood, and Demographics.

Run with Naftiko ATTOMCommunityNeighborhoodDemographics

What You Can Do

GET
Getneighborhoodcommunity — ATTOM Get Neighborhood Community Profile
/v1/neighborhood/community
GET
Getlocationlookup — ATTOM Lookup Location By GeoIdV4
/v1/location/lookup

MCP Tools

attom-get-neighborhood-community

ATTOM Get Neighborhood Community Profile

read-only idempotent
attom-get-location-lookup

ATTOM Lookup Location By GeoIdV4

read-only idempotent

Capability Spec

community-community.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: ATTOM Community API — Community
  description: 'ATTOM Community — neighborhood community profile (demographics, crime, weather, commute,
    education). Self-contained Naftiko capability covering one ATTOM business surface.'
  tags:
  - ATTOM
  - Community
  - Neighborhood
  - Demographics
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    ATTOM_API_KEY: ATTOM_API_KEY
capability:
  consumes:
  - type: http
    namespace: community-community
    baseUri: https://api.gateway.attomdata.com
    description: ATTOM Community business capability.
    resources:
    - name: neighborhood-community
      path: /v4.0.0/neighborhood/community
      operations:
      - name: getneighborhoodcommunity
        method: GET
        description: ATTOM Get Neighborhood Community Profile
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: geoIdv4
          in: query
          type: string
          required: true
    - name: location-lookup
      path: /v4/location/lookup
      operations:
      - name: getlocationlookup
        method: GET
        description: ATTOM Lookup Location By GeoIdV4
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: geoIdV4
          in: query
          type: string
          required: true
        - name: geographyTypeAbbreviation
          in: query
          type: string
          required: false
    authentication:
      type: apikey
      key: apikey
      value: '{{env.ATTOM_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: community-community-rest
    port: 8080
    description: REST adapter for ATTOM Community.
    resources:
    - path: /v1/neighborhood/community
      name: neighborhood-community
      operations:
      - method: GET
        name: getneighborhoodcommunity
        description: ATTOM Get Neighborhood Community Profile
        call: community-community.getneighborhoodcommunity
        with:
          geoIdv4: rest.query.geoIdv4
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/location/lookup
      name: location-lookup
      operations:
      - method: GET
        name: getlocationlookup
        description: ATTOM Lookup Location By GeoIdV4
        call: community-community.getlocationlookup
        with:
          geoIdV4: rest.query.geoIdV4
          geographyTypeAbbreviation: rest.query.geographyTypeAbbreviation
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: community-community-mcp
    port: 9090
    transport: http
    description: MCP adapter for ATTOM Community.
    tools:
    - name: attom-get-neighborhood-community
      description: ATTOM Get Neighborhood Community Profile
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: community-community.getneighborhoodcommunity
      with:
        geoIdv4: tools.geoIdv4
      outputParameters:
      - type: object
        mapping: $.
    - name: attom-get-location-lookup
      description: ATTOM Lookup Location By GeoIdV4
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: community-community.getlocationlookup
      with:
        geoIdV4: tools.geoIdV4
        geographyTypeAbbreviation: tools.geographyTypeAbbreviation
      outputParameters:
      - type: object
        mapping: $.