openapi: 3.1.0 info: title: ATTOM Area All Events POI Categories API description: 'ATTOM Area API provides geographic boundary and hierarchy lookup for U.S. states, counties, CBSAs, ZIPs, neighborhoods, and school zones. Resolve a latitude/longitude to a geographic hierarchy, list counties within a state, fetch GeoJSON parcel/area boundaries, and resolve any ATTOM v4 geography identifier (geoIdV4) to its location metadata. ' version: v1.0.0 contact: name: ATTOM Data Customer Care email: datacustomercare@attomdata.com url: https://api.developer.attomdata.com/ license: name: ATTOM Data Terms of Use url: https://www.attomdata.com/terms-of-use/ servers: - url: https://api.gateway.attomdata.com description: ATTOM API Production Gateway security: - ApiKeyAuth: [] tags: - name: POI Categories description: Lookup of POI categories, lines of business, and industries. paths: /v4/neighborhood/poi/categorylookup: get: summary: Lookup POI Categories description: Look up POI category metadata by category name, line of business, or industry. operationId: lookupPoiCategories tags: - POI Categories parameters: - name: category in: query required: false description: Category name to look up. schema: type: string - name: lineofbusiness in: query required: false description: Line-of-business code or name. schema: type: string - name: industry in: query required: false description: Industry code or name. schema: type: string responses: '200': description: Category lookup envelope. content: application/json: schema: $ref: '#/components/schemas/CategoryEnvelope' components: schemas: Status: type: object properties: version: type: string code: type: integer msg: type: string total: type: integer Category: type: object properties: category: type: string lineOfBusiness: type: string industry: type: string code: type: string CategoryEnvelope: type: object properties: status: $ref: '#/components/schemas/Status' response: type: object properties: categories: type: array items: $ref: '#/components/schemas/Category' securitySchemes: ApiKeyAuth: type: apiKey in: header name: apikey description: ATTOM-issued API key. Pass on every request via the `apikey` header.