Connect Standardcompute to Zapier, n8n, and Make.com using our OpenAI‑style API endpoints.
https://api.stdcmpt.com
Auth: Authorization: Bearer <API_KEY>
Endpoints: /v1/completions · /v1/responses
Unlimited (fair use)
Multiple models
Standardcompute is built to be a plug‑and‑play AI API for automations. If your automation platform can send an HTTP request, it can use Standardcompute—no special SDKs required.
All requests use a customer API key in the Authorization header:
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Tip: store the key in your automation platform’s “Secrets/Credentials” store (recommended) rather than directly in node/module configuration.
| Endpoint | Use it for | Typical output |
|---|---|---|
POST /v1/completions |
Fast prompt → completion workflows. Great for “one‑shot” tasks. | Completion text under choices[0].text (OpenAI‑style) |
POST /v1/responses |
Richer responses and structured output workflows. | Convenient text field such as output_text (implementation dependent) |
POST https://api.stdcmpt.com/v1/completions
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"model": "workflow",
"prompt": "Summarize this message in 1 sentence:\n{{text}}",
"max_tokens": 120,
"temperature": 0.3
}
POST https://api.stdcmpt.com/v1/responses
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
{
"model": "workflow",
"input": "Extract key action items from this:\n{{meeting_notes}}"
}
Standardcompute currently offers three models, matched to subscription tier.
Your API key determines which model(s) you can use. Switching models is as simple as changing the
model value in your request—no new credentials required.
| Subscription | Model value | Typical fit |
|---|---|---|
| Community | community |
Everyday automations, drafts, summaries, lightweight reasoning. |
| Workflow | workflow |
Reliable production workflows, routing, extraction, structured outputs. |
| Analyze | analyze |
Deeper analysis, higher-accuracy tasks, more complex transformations. |
base URL, API key, and (optionally) the model field.
n8n is the most flexible platform for custom APIs, and Standardcompute integrates cleanly in two ways:
YOUR_STANDARDCOMPUTE_API_KEYhttps://api.stdcmpt.com/v1Use HTTP Request and call Standardcompute directly:
Method: POST
URL: https://api.stdcmpt.com/v1/completions
Headers:
Authorization: Bearer {{$env.STDCP_API_KEY}}
Content-Type: application/json
Body (JSON):
{
"model": "workflow",
"prompt": "Rewrite this politely:\n{{$json.text}}",
"max_tokens": 180,
"temperature": 0.4
}
Zapier is fantastic for fast no-code automations. For custom AI APIs, the most reliable approach is to use Webhooks by Zapier (Custom Request).
Zapier’s most dependable method for custom AI APIs is the built-in Webhooks by Zapier app. Use the Custom Request action to send JSON to Standardcompute.
POSThttps://api.stdcmpt.com/v1/responses (or /v1/completions)Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
POST https://api.stdcmpt.com/v1/responses
{
"model": "workflow",
"input": "Summarize this in 3 bullet points:\n{{Text from previous step}}"
}
POST https://api.stdcmpt.com/v1/completions
{
"model": "workflow",
"prompt": "Rewrite this politely:\n{{Text from previous step}}",
"max_tokens": 200,
"temperature": 0.3
}
Zapier will expose fields from the JSON response so you can map them into later steps.
For example, a completion may be accessible via choices__0__text depending on your Zapier UI mapping.
Make.com integrates cleanly through its HTTP module (“Make a request”) and custom webhooks. You can call Standardcompute in one module and map the response to subsequent steps.
In Make.com, you can call Standardcompute using the HTTP app.
This works for both /v1/completions and /v1/responses.
POSThttps://api.stdcmpt.com/v1/completions (or /v1/responses)Authorization: Bearer YOUR_API_KEY
(If Make provides a dedicated JSON body content type field, you typically do not need to add Content-Type manually.)
application/json{
"model": "workflow",
"prompt": "Turn this into a friendly customer reply:\n{{message}}",
"max_tokens": 220,
"temperature": 0.4
}
{
"model": "workflow",
"input": "Extract action items:\n{{meeting_notes}}"
}
Authorization: Bearer YOUR_API_KEYContent-Type: application/json is set.prompt vs input).We keep this guide aligned with platform documentation and community-known behavior. For reference: