ProAI Live API Playground
Directly interact with the live ProAI Cloud Run service. Test health checks, simulation pipelines, and explore system schemas.
https://proai-server-924327084517.us-central1.run.appProAI API Playground
Requests are sent directly from your browser to the live Cloud Run deployment. No credentials or production data are required.
Available Playground Operations
Everything the public sandbox exposes today, plus notes on how production authentication extends it.
GET /health
Returns live cluster status, version metadata, and registered subsystem services. Use it as your first connectivity smoke test.
Service Selection Header
Pass X-ProAI-Service: executor | workspace to inspect a specific subsystem of the platform instead of the aggregate status.
POST /health (simulate)
Send action: "simulate" with a pipelineId and sampleRecord to preview schema transformation before deploying.
CORS & Rate Limits
The public playground is rate limited and safe to call from the browser. Production tokens unlock higher throughput quotas.
Equivalent cURL Commands
Reproduce any playground request from your own terminal or CI pipeline.
1. Cluster health probe
curl -X GET \ https://proai-server-924327084517.us-central1.run.app/health
2. Executor subsystem status
curl -X GET \ -H "X-ProAI-Service: executor" \ https://proai-server-924327084517.us-central1.run.app/health
3. Simulate a pipeline transformation
curl -X POST \
-H "Content-Type: application/json" \
-d '{"action":"simulate","pipelineId":"demo-orders-etl","sampleRecord":{"orderId":"ord_98231","amountUsd":1250.00}}' \
https://proai-server-924327084517.us-central1.run.app/healthKeep Exploring the Sandbox
Read the API reference for the full surface area, or follow the guided quickstart to wire the endpoints into a pipeline.