Particle Space

Particle Space is proptech infrastructure that exposes real-estate and property data through a REST API, Dashboard, SDKs, and white-labeled UIs. The platform provides real-time access to millions of properties for sale, rent, and off-market - property records, address and property search, valuations, comparables, and listings - using publishable and secret API keys with live and test modes.

5 APIs 0 Features
Real EstateProperty DataPropTechListingsValuations

APIs

Particle Space Property Records API

Resource-oriented access to property records and detailed attributes for residential properties across the United States. Modeled from Particle Space's documented data-platform ...

Particle Space Address Search API

Search and look up properties by address or query, resolving an address to a property record for downstream records, valuations, and listings lookups. Modeled from Particle Spac...

Particle Space Valuations API

Automated valuation model (AVM) estimates for property value and rent for a given property or address. Modeled from Particle Space's documented data-platform product; specific e...

Particle Space Comparables API

Comparable properties (comps) for a subject property to support valuation, underwriting, and pricing workflows. Modeled from Particle Space's documented data-platform product.

Particle Space Listings API

Real-time access to property listings for sale, for rent, and off-market, the core of Particle Space's real-estate data platform. Modeled from Particle Space's documented data-p...

Collections

Pricing Plans

Rate Limits

Particle Space Rate Limits

2 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Particle Space API
  version: '1.0'
request:
  auth:
    type: bearer
    token: '{{secretKey}}'
items:
- info:
    name: Property Records
    type: folder
  items:
  - info:
      name: List or query property records.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/properties
      params:
      - name: address
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
    docs: Returns property records matching the supplied filters.
  - info:
      name: Retrieve a single property record.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/properties/:id
      params:
      - name: id
        value: ''
        type: path
        description: Particle Space identifier for the property.
    docs: Retrieve a single property record by id.
- info:
    name: Address Search
    type: folder
  items:
  - info:
      name: Search properties by address or query.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/properties/search
      params:
      - name: q
        value: ''
        type: query
        description: Address or search query.
    docs: Resolves an address or free-text query to matching properties.
- info:
    name: Valuations
    type: folder
  items:
  - info:
      name: Get an AVM value and rent estimate for a property.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/valuations
      params:
      - name: propertyId
        value: ''
        type: query
      - name: address
        value: ''
        type: query
    docs: Returns automated valuation model (AVM) value and rent estimates.
- info:
    name: Comparables
    type: folder
  items:
  - info:
      name: Get comparable properties for a subject property.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/comparables
      params:
      - name: propertyId
        value: ''
        type: query
      - name: address
        value: ''
        type: query
    docs: Returns comparable properties (comps) for a subject property.
- info:
    name: Listings
    type: folder
  items:
  - info:
      name: List for-sale, for-rent, and off-market listings.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/listings
      params:
      - name: status
        value: ''
        type: query
        description: for_sale | for_rent | off_market
      - name: address
        value: ''
        type: query
      - name: limit
        value: ''
        type: query
    docs: Returns property listings for sale, for rent, and off-market.
  - info:
      name: Retrieve a single listing.
      type: http
    http:
      method: GET
      url: https://api.particlespace.com/listings/:id
      params:
      - name: id
        value: ''
        type: path
        description: Listing identifier.
    docs: Retrieve a single listing by id.
bundled: true