PARLEY developer resources
This is the PARLEY developer portal for agents and engineers integrating with the public site API on parleytech.com. Production parliamentary alert feeds are provisioned after a demo; they are not anonymous. What is public here is intentionally small, documented, and callable without an API key so agents can verify the product and open a human workflow.
Quickstart
curl -sS https://www.parleytech.com/api/v1/health
curl -sS https://www.parleytech.com/api/v1/product
curl -sS -H "Accept: text/markdown" https://www.parleytech.com/about
curl -sS https://www.parleytech.com/openapi.json
Authentication
Public GET endpoints on /api/v1 do not use API keys. POST /api/v1/demo-requests is also unauthenticated but rate-limited and validated. Customer workspaces (alerts, reports, watchlists) require a DAAT-issued tenant after a demo — email hello@daat.cloud. There is no OAuth surface on this domain today.
Sandbox
The sandbox is the live public API itself: health, product, coverage, contact, and demo-request receipt. It returns real product metadata, not parliamentary payloads. Treat error responses as JSON with error.code, error.message, and error.hint.
Endpoints
CLI
The official CLI is parleytech (see the cli/ package in the website repository). Example: npx parleytech product. Publish/install from npm once the package is released as parleytech.
Machine-readable files
- https://www.parleytech.com/llms.txt — agent index, including when to use PARLEY
- https://www.parleytech.com/openapi.json — contract for function calling
- https://www.parleytech.com/sitemap.xml — public URLs
- https://www.parleytech.com/robots.txt — crawl rules
Send Accept: text/markdown on docs URLs. Responses that negotiate include Vary: Accept, Accept-Encoding.