> ## Documentation Index
> Fetch the complete documentation index at: https://docs.anysite.io/llms.txt
> Use this file to discover all available pages before exploring further.

# /zapimoveis/properties

> Get full ZAP Imóveis listing details by numeric ID (or listing URL): title, description, address and coordinates, business type, listing status, price, condo fee, IPTU, usable and total area, bedrooms, bathrooms, suites, parking, unit floor, amenities, advertiser (agency/broker) with contact phones, publication date, listing code and all images.

**Price:** 1 credit

**⚠️ Common errors:** 412: Listing not found (well-formed but nonexistent ID)



## OpenAPI

````yaml /openapi/real-estate.json post /api/zapimoveis/properties
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/zapimoveis/properties:
    post:
      tags:
        - /zapimoveis
      summary: /zapimoveis/properties
      description: >-
        Get full ZAP Imóveis listing details by numeric ID (or listing URL):
        title, description, address and coordinates, business type, listing
        status, price, condo fee, IPTU, usable and total area, bedrooms,
        bathrooms, suites, parking, unit floor, amenities, advertiser
        (agency/broker) with contact phones, publication date, listing code and
        all images.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Listing not found (well-formed but
        nonexistent ID)
      operationId: __api_zapimoveis_properties_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ZapimoveisPropertiesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ZapimoveisProperty'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ZapimoveisPropertiesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        property:
          type: string
          minLength: 1
      type: object
      required:
        - property
    ZapimoveisProperty:
      properties:
        '@type':
          type: string
          default: ZapimoveisProperty
        id:
          type: string
        url:
          type: string
        business_type:
          anyOf:
            - type: string
            - type: 'null'
        listing_type:
          anyOf:
            - type: string
            - type: 'null'
        property_type:
          anyOf:
            - type: string
            - type: 'null'
        unit_types:
          items:
            type: string
          type: array
          default: []
        unit_sub_types:
          items:
            type: string
          type: array
          default: []
        publication_type:
          anyOf:
            - type: string
            - type: 'null'
        construction_status:
          anyOf:
            - type: string
            - type: 'null'
        status:
          anyOf:
            - type: string
            - type: 'null'
        street:
          anyOf:
            - type: string
            - type: 'null'
        street_number:
          anyOf:
            - type: string
            - type: 'null'
        neighborhood:
          anyOf:
            - type: string
            - type: 'null'
        zone:
          anyOf:
            - type: string
            - type: 'null'
        city:
          anyOf:
            - type: string
            - type: 'null'
        state:
          anyOf:
            - type: string
            - type: 'null'
        state_acronym:
          anyOf:
            - type: string
            - type: 'null'
        zip_code:
          anyOf:
            - type: string
            - type: 'null'
        location_id:
          anyOf:
            - type: string
            - type: 'null'
        latitude:
          anyOf:
            - type: number
            - type: 'null'
        longitude:
          anyOf:
            - type: number
            - type: 'null'
        price:
          anyOf:
            - type: number
            - type: 'null'
        total_price:
          anyOf:
            - type: number
            - type: 'null'
        condo_fee:
          anyOf:
            - type: number
            - type: 'null'
        iptu:
          anyOf:
            - type: number
            - type: 'null'
        usable_area:
          anyOf:
            - type: number
            - type: 'null'
        total_area:
          anyOf:
            - type: number
            - type: 'null'
        usable_area_max:
          anyOf:
            - type: number
            - type: 'null'
        bedroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        suite_count:
          anyOf:
            - type: integer
            - type: 'null'
        bathroom_count:
          anyOf:
            - type: integer
            - type: 'null'
        parking_count:
          anyOf:
            - type: integer
            - type: 'null'
        unit_floor:
          anyOf:
            - type: integer
            - type: 'null'
        floor_count:
          anyOf:
            - type: integer
            - type: 'null'
        accepts_exchange:
          anyOf:
            - type: boolean
            - type: 'null'
        external_id:
          anyOf:
            - type: string
            - type: 'null'
        created_at:
          anyOf:
            - type: string
            - type: 'null'
        updated_at:
          anyOf:
            - type: string
            - type: 'null'
        amenities:
          items:
            type: string
          type: array
          default: []
        image:
          anyOf:
            - type: string
            - type: 'null'
        images:
          items:
            type: string
          type: array
          default: []
        image_count:
          anyOf:
            - type: integer
            - type: 'null'
        seller:
          anyOf:
            - $ref: '#/components/schemas/ZapimoveisSeller'
            - type: 'null'
      type: object
      required:
        - id
        - url
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    ZapimoveisSeller:
      properties:
        '@type':
          type: string
          default: ZapimoveisSeller
        id:
          anyOf:
            - type: string
            - type: 'null'
        name:
          anyOf:
            - type: string
            - type: 'null'
        image:
          anyOf:
            - type: string
            - type: 'null'
        license_number:
          anyOf:
            - type: string
            - type: 'null'
        legacy_zap_id:
          anyOf:
            - type: string
            - type: 'null'
        legacy_vivareal_id:
          anyOf:
            - type: string
            - type: 'null'
        phones:
          items:
            type: string
          type: array
          default: []
      type: object
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````