Temporal Workflow API
Temporal is a powerful open-source engine for orchestrating durable, fault-tolerant microservice workflows via gRPC and REST. It supports retries, timers, versioning, and stateful logic. Ideal for backend systems, job orchestration, and long-running operations.
1
Endpoints
26
Views
Jul 20, 2025
Last Checked
NaN
Rate Limit
API Endpoints
Initiates a new Temporal workflow execution
Full URL
http://localhost:7233/workflows
Code Examples
curl -X POST 'http://localhost:7233/workflows' \
-H 'Authorization: Bearer YOUR_API_KEY'
Parameters
{ "input": { "orderId": "ORD-12345" }, "taskQueue": "orders", "workflowType": "OrderProcessing" }
Example Response
{
"runId": "r1234567890",
"workflowId": "wf-abc123xyz456"
}
Version
v1
Rate Limit
1000 executions/minute
Tags
orchestrationworkflows
Technical Details
Authentication
NoneResponse Formats
gRPCAvailability
globalStatus
Published Rate Limits
Self-managed
Supported Languages
GoJavaPython
Use Cases
distributed systems
task queues
Related APIs
Discover similar APIs that might interest you