Panda IDX

Overview

Complete REST API reference for Panda IDX - integrate with external tools, automate workflows, and build custom applications with our developer API.

API Reference Overview

The Panda IDX REST API allows you to integrate your real estate platform with external tools, automate workflows, and build custom applications.

API Features

Authentication

View Authentication Guide →

Secure API access using API keys and OAuth 2.0 authentication. Learn how to generate keys, manage permissions, and make authenticated requests.

Endpoints

Contacts API

View Contacts API →

Retrieve, create, update, and manage contacts programmatically. Perfect for CRM integrations and lead management automation.

Available Operations:

  • Get all contacts with filtering
  • Get contact by ID
  • Create new contacts
  • Update contact information
  • Delete contacts
  • Search contacts

Webhooks

Set up real-time notifications for events like:

  • New contact created
  • Contact updated
  • Property inquiry received
  • Transaction status changed
  • Email received

API Basics

Base URL: https://api.pandaidx.com/v1

Authentication: API Key in header Authorization: Bearer YOUR_API_KEY

Response Format: JSON

Rate Limits: 1000 requests/hour per API key

Quick Start Example

// Get all contacts
fetch('https://api.pandaidx.com/v1/contacts', {
  headers: {
    'Authorization': 'Bearer YOUR_API_KEY',
    'Content-Type': 'application/json'
  }
})
  .then(response => response.json())
  .then(data => console.log(data))

Getting Started

  1. Generate your API key in your account settings
  2. Review the Contacts API documentation
  3. Start building your integration

Need help? Contact us or email info@pandaidx.com