Turn your database into a product.
Connect SQL Server, PostgreSQL, or MySQL. Build queries and publish them as documented REST endpoints. Share or monetize them in a community marketplace — with no infrastructure to run.
Free sandbox in 60 seconds · No credit card
Built for residents, HOAs, communities, and trusted partners
From database to documented API in three steps.
Connect
Point DAPI at your SQL Server, PostgreSQL, or MySQL database with read-only credentials — encrypted at rest, never shared.
Build
Turn any query into a REST endpoint. Map and rename fields, mask sensitive columns, and set rate limits per consumer.
Publish
Go public, private, or invite-only. Docs, API keys, and usage quotas are generated for you the moment you publish.
Everything between your data and your developers.
One workspace to connect, build, secure, publish, and measure your APIs.
Connection manager
SQL Server, PostgreSQL, and MySQL connections with health checks and read-only enforcement.
SQL query builder
Write, test, and version queries safely before they ever serve a single request.
Endpoint builder
Map columns to clean JSON fields, rename outputs, and mask anything sensitive.
Auto-generated docs
Every API ships with reference docs, an OpenAPI spec, and a Postman-ready collection.
Marketplace listings
List APIs publicly or invite-only. Every public listing is reviewed before going live.
Keys & security
Sandbox and live keys, per-key rate limits, monthly quotas, and AES-256 encrypted credentials.
Analytics
Requests, latency, error rates, and your top consumers — per API and per key.
Webhooks & automation
Signed webhook deliveries with automatic retries, ready for your favorite automation tools.
Your first call in under a minute.
- Instant sandbox key Sign up and call any marketplace API immediately — production access is approval-gated.
-
Predictable JSON envelope Every response returns
{ data, meta, request_id }, so clients never guess. - OpenAPI for every API Download the spec, generate a client, or import straight into Postman.
# List communities in a ZIP code
curl "https://dealmate.ai/dapi-gw/run/hoa-directory/v1/communities?zip=32824" \
-H "X-API-Key: dapi_test_xxx"
const res = await fetch(
"https://dealmate.ai/dapi-gw/run/hoa-directory/v1/communities?zip=32824",
{ headers: { "X-API-Key": "dapi_test_xxx" } }
);
const { data, meta, request_id } = await res.json();
console.log(meta.count, "communities", request_id);
import requests
res = requests.get(
"https://dealmate.ai/dapi-gw/run/hoa-directory/v1/communities",
params={"zip": "32824"},
headers={"X-API-Key": "dapi_test_xxx"},
)
body = res.json()
print(body["meta"]["count"], body["request_id"])
The API layer for where people live.
A curated collection of verified APIs across three pillars — Reach residents, Discover trusted providers, and Understand communities. Subscribe with a key in one click, or publish your own. Some are completely open — no key required.
Neighborhood Broadcast
DealMate · Verified
Send one MyHomeInbox notice to every resident on a street or in a ZIP. Built for HOA-wide notices and reminders.
Paying Business Directory
DealMate · Verified
Search verified, paying member providers by name, category, location, rating, and proximity. Vetted vendors for your community.
Community & Subdivision Directory
DealMate · Verified
Look up 96,000+ U.S. communities and subdivisions by name, county, or ZIP — with hierarchy and map centroids.
Free · No keyTwo APIs are completely open — try them right now with no signup: Community Directory and Service Categories.
Have data worth sharing? Publish it.
HOAs, management companies, and trusted partners can turn their own database into a documented, monetizable API in minutes — and reach the residents and communities already on DealMate.
Point at your database
SQL Server, PostgreSQL, or MySQL. Read-only credentials, encrypted at rest. No data is copied.
Turn a query into an endpoint
Map a query to a REST endpoint, mask sensitive fields, set rate limits and quotas. Docs generate themselves.
List it in the marketplace
Public, private, or invite-only. Approve who gets production access. Verified listings earn the DealMate badge.
Start free. Scale when your APIs do.
Starter
For your first connection and your first published API.
- 1 database connection
- 2 published APIs
- Sandbox keys included
- 10k calls/mo on default plans
- Community support
Pro
For teams publishing to the marketplace and automating with webhooks.
- 10 database connections
- 20 published APIs
- Marketplace publishing
- Webhooks with signed deliveries
- Priority listing review
Enterprise
For organizations with private marketplaces and compliance needs.
- Unlimited connections & APIs
- Private marketplace
- SLAs & dedicated support
- Custom quotas & review flow
- Onboarding assistance
Production access and public marketplace listings are reviewed before going live.
Real data, finally shareable.
Our violation and ARC data lived in a SQL Server nobody could touch. Now residents and our management partner read it through one documented API — and the board finally trusts the numbers.
I published our crew availability as an API in an afternoon. Two property managers subscribed the same week, and the webhook into our scheduler means zero double-bookings.
Sandbox key to working integration in under ten minutes. The OpenAPI spec and the consistent data/meta envelope made it feel like a product team of fifty built it.
Questions, answered.
Which databases does DAPI support?
SQL Server, PostgreSQL, and MySQL today. You connect with your own credentials — DAPI never copies or hosts your data, it queries your database on demand and returns clean JSON.
Is my database safe? What can DAPI actually run?
Connections are read-only by default and credentials are encrypted with AES-256-GCM at rest. DAPI enforces single-statement SQL, so an endpoint can only ever run the query you saved — no arbitrary writes, no chained statements. Sensitive fields can be masked (redacted, last-4, or hashed) before they leave the gateway.
How do sandbox vs. production keys work?
Every account gets a free sandbox key instantly — use it to explore any marketplace API with test-tier limits. Production keys are approval-gated: the API publisher (and, for public listings, our review team) approves access, then your live key carries its own rate limits and monthly quota.
Who can list an API on the marketplace?
Anyone on a Pro or Enterprise plan — HOAs, property managers, home-service businesses, community orgs, or independent developers. Public listings go through a short review for quality and data-safety before they appear in the marketplace.
Can I keep an API private or invite-only?
Yes. Each API can be public, private (only you and your team), or invite-only — you choose exactly which residents, partners, or organizations can request a key, and you can revoke access at any time.
How do Zapier, Make, and n8n connect?
Two ways: call any DAPI endpoint from an HTTP step using your API key, or point DAPI webhooks at a Zapier/Make/n8n trigger URL. Webhook deliveries are signed and automatically retried, so your automations stay in sync.
Ship your first endpoint today.
Connect a database, publish an API, and make your first call — all before your coffee gets cold.