THE SANDBOX
$0/mo
Select TierAccount-wide totals for all nodes on this Gate. Gateway Nodes will list additional titles soon (catalog is provisioning). Use Smart Nodes for Parrot Gate, Parrot Smart, and Integration Node, and The Vault for add-ons.
Aggregated handshakes and spend. More Gateway Nodes are coming soon; use Smart Nodes in the sidebar for live detail today.
System Online. Awaiting Telemetry. Gateway Nodes are on the way; open Smart Nodes in the sidebar to configure your first live node.
Gate default: https://api.polycracker.dev
· Gateway Nodes in the sidebar will list more titles as they are provisioned.
PATH C // SECURE SUPPORT
Authenticated transmission to operations. Rate-limited channel.
The Vault
Unified subscriptions, universal credits, and API access for active billing on this Gate.
Global credit wallet
Credits are applied universally across all Parrot Nodes, APIs, and future extensions.
Manage Billing opens the Lemon Squeezy portal for invoices, payment methods, and cancellations.
Active Keys: — / —
| Label | Prefix | Created | Status | Actions |
|---|---|---|---|---|
| Loading keys… | ||||
Loading supported models…
Copy your key now. For your security, it will not be shown again.
To prevent abuse, new accounts must verify a payment method via Lemon Squeezy before receiving Sandbox access and starter credits. You will not be charged for the free trial period.
THE SANDBOX
$0/mo
Select TierMIMIC
$49/mo
Select TierAPEX
$149/mo
Select TierENTERPRISE
$499/mo
Select Tier[ ECOSYSTEM // NATIVE_APPLICATIONS ]
ZERO_CODE_CONSUMER_SUITE
Turnkey, production-grade applications engineered directly on Polycracker's enterprise AI routing, memory vaults, and multi-model execution architecture.
MULTI_CHANNEL_DISPATCH_MESH
Single-instance social command center for multi-platform broadcasting, grounded HITL comment triage, and verified analytics.
REGISTRY_SLOT_RESERVED
Next-generation zero-code wrapper currently staged for internal deployment.
REGISTRY_SLOT_RESERVED
Next-generation zero-code wrapper currently staged for internal deployment.
[ ECOSYSTEM // PARTNER_REGISTRY ]
THIRD_PARTY_APPLICATION_MESH
A curated registry of specialized consumer tools, agentic workflows, and vertical wrappers built by external developers using the Polycracker stack.
[ STATUS: STAGED // REGISTRATION_OPENING_SOON ]
Partner developer submission portal is currently in active staging. Certified third-party applications will be listed directly in this verified registry.
REGISTRY_SLOT_RESERVED
Open registry berth reserved for a certified third-party wrapper pending partner onboarding.
REGISTRY_SLOT_RESERVED
Open registry berth reserved for a certified third-party wrapper pending partner onboarding.
REGISTRY_SLOT_RESERVED
Open registry berth reserved for a certified third-party wrapper pending partner onboarding.
Deploy your consumer app or workflow on our execution engine. Apply for ecosystem registry placement and verified portal distribution.
Highway engine room — ROI, API key, live stream
Use Account in the sidebar, then Refresh to pull membership and events.
Modeled from node executions vs. manual handling (assumptions update as your fleet scales).
Lifetime executions on this account
≈ 15 min reclaimed per use
Based on Industry Standard Labor Rates.
| Timestamp | workflow_id | _px |
|---|---|---|
| Refresh to see events. | ||
Keys use one-time display. Generate in The Vault, or Refresh after sign-in. For authentication, X-API-Key is preferred for external applications, but your dashboard Bearer JWT will also work.
— enter credentials in the sidebar, then Refresh —
Install the Parrot Integration package:
npm install n8n-nodes-parrot-gate
POST https://api.polycracker.dev/highway/process
curl -X POST https://api.polycracker.dev/highway/process \
-H "Content-Type: application/json" \
-H "X-API-Key: <your_api_key>" \
-d '{
"user_id": "user_xxxxxxxx",
"workflow_id": "wf_orders_sync",
"goal_statement": "Ingest webhook orders and sync to vault.",
"raw_input_payload": {
"event": "order.created",
"order_id": "ord_8842"
}
}'
Required: user_id, workflow_id, goal_statement. Include workflow context in raw_input_payload (and optionally payload).
{
"user_id": "user_xxxxxxxx",
"workflow_id": "wf_orders_sync",
"goal_statement": "Ingest webhook orders and sync to vault.",
"raw_input_payload": {
"event": "order.created",
"order_id": "ord_8842"
}
}
Node package: n8n-nodes-parrot-gate
Claude / GPT execution plane — telemetry, API key, live stream
Use Account in the sidebar, then Refresh to pull membership and telemetry.
Aggregated from POST /api/v1/universal/execute on this Gate.
Lifetime universal execute calls
Cumulative request bytes (est.)
Rolling mean round-trip
| Timestamp | model | latency_ms |
|---|---|---|
| Refresh to see events. | ||
Execution pricing tier
Flat fee $0.10 per execute
| Model | Executions | Avg Latency (ms) | Cumulative Spend ($) |
|---|---|---|---|
| Refresh to load tier models. | |||
| Timestamp | Model | Latency (ms) | Spend ($) |
|---|---|---|---|
| Refresh to see events. | |||
Keys use one-time display. Generate in The Vault, or Refresh after sign-in. Accepted auth: X-API-Key: <your_key> or Authorization: Bearer <your_key>. Do not send a bare Authorization: <key> (missing Bearer). Rate limits and billing are keyed to your API key / user identity (not a shared office IP).
— enter credentials in the sidebar, then Refresh —
POST https://api.polycracker.dev/api/v1/universal/execute
Supports dynamic OpenAI and Anthropic model ids (pass-through), for example gpt-4o-mini, gpt-4o, o1, o3, claude-sonnet-5, claude-opus-5, claude-haiku-4-5.
Per API key or authenticated user identity (not a shared office IP). Limits scale with subscription tier:
| Tier | Requests / minute |
|---|---|
| Sandbox | 10 |
| Mimic | 60 |
| Apex | 200 |
| Enterprise | 1,200 |
Prepaid flat-rate pricing per execution. Any unlisted or future model string automatically classifies into its closest tier based on architecture and parameter capabilities.
Loading supported models matrix…
Sandbox and Mimic may use Utility / Standard models only. Apex and Enterprise unlock Heavy and Frontier models (and all Claude family ids). Denials return HTTP 403 with this JSON body (no detail wrapper):
{
"error": {
"type": "authorization_error",
"code": "insufficient_tier",
"message": "Access denied. The model 'claude-opus-5' requires a minimum subscription tier of 'Apex'. Your current tier is 'Mimic'.",
"resolution": "Please upgrade your account tier in the PolyCracker dashboard to access premium models."
}
}
| Field | Hard max | Notes |
|---|---|---|
system_prompt |
50,000 chars | Combined length is also gated by subscription: Sandbox 2,000, Mimic 10,000, Apex 50,000, Enterprise 200,000 (HTTP 413 if exceeded). |
user_input |
200,000 chars | |
response_schema |
64,768 chars (~64 KB) | Optional JSON Schema for structured output. Oversized schemas are rejected at validation. |
Every successful execute returns a fixed envelope. Your model JSON is never the HTTP top-level body — it is always under data.
{
"status": "ok",
"data": { /* matches response_schema, or default { "result": "..." } */ },
"model": "claude-sonnet-5",
"requested_model": "claude-sonnet-5",
"provider": "anthropic",
"fallback": false,
"fallback_reason": null,
"balance_usd": 71.24,
"cost_usd": 0.2,
"latency_ms": 24547,
"tokens_burned": 4002
}
response_schema (optional) defines the shape of data. If omitted, the default schema is { "result": string }, so read response.data.result. If you pass a custom schema (e.g. summary), read those fields on data directly (e.g. response.data.summary). Do not send temperature — it is not accepted on this route.
# Default schema (no response_schema):
$text = $resp.data.result
# Custom response_schema with a "summary" property:
$summary = $resp.data.summary
Auth header (pick one): X-API-Key: <your_api_key> or Authorization: Bearer <your_api_key>.
curl -X POST https://api.polycracker.dev/api/v1/universal/execute \
-H "Content-Type: application/json" \
-H "X-API-Key: <your_api_key>" \
-d '{
"system_prompt": "You are a helpful assistant.",
"user_input": "Summarize this workflow.",
"model": "claude-sonnet-5",
"response_schema": {
"type": "object",
"properties": {
"summary": { "type": "string" }
},
"required": ["summary"],
"additionalProperties": false
}
}'
Equivalent auth with Bearer:
curl -X POST https://api.polycracker.dev/api/v1/universal/execute \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <your_api_key>" \
-d '{ ... same JSON body ... }'
system_prompt and user_input are required. model defaults to gpt-4o. response_schema is optional and shapes data (not an extra data.result wrap). Do not send temperature or OpenAI-style messages arrays.
{
"system_prompt": "You are a helpful assistant.",
"user_input": "Summarize this workflow.",
"model": "claude-sonnet-5",
"response_schema": {
"type": "object",
"properties": {
"summary": { "type": "string" }
},
"required": ["summary"],
"additionalProperties": false
}
}
With the schema above, read response.data.summary after a successful call.
Production Vault recall — telemetry, API key, live stream
Use Account in the sidebar, then Refresh to pull membership and telemetry.
Aggregated from POST /api/v1/memory/ingest and POST /api/v1/memory/recall.
Production vaults with stored chunks
Slots consumed vs. Memory add-on allowance
Estimated tokens avoided via recall
| Timestamp | operation | vault |
|---|---|---|
| Refresh to see events. | ||
For authentication, X-API-Key is preferred for external applications, but your dashboard Bearer JWT will also work.
— enter credentials in the sidebar, then Refresh —
curl -X POST https://api.polycracker.dev/api/v1/memory/ingest \
-H "Content-Type: application/json" \
-H "X-API-Key: <your_api_key>" \
-d '{
"content": "Runbook for production deploy…",
"metadata": { "production_vault": "primary" }
}'
curl -X POST https://api.polycracker.dev/api/v1/memory/recall \
-H "Content-Type: application/json" \
-H "X-API-Key: <your_api_key>" \
-d '{
"prompt": "How do we roll back a failed production deploy?",
"max_tokens": 500,
"metadata": { "production_vault": "primary" }
}'
{
"content": "Runbook for production deploy…",
"metadata": { "production_vault": "primary" }
}
{
"prompt": "How do we roll back a failed production deploy?",
"max_tokens": 500,
"metadata": { "production_vault": "primary" }
}
Live ingest history from POST /api/v1/memory/ingest
Rows appear after ingest and recall requests for this account. Use Refresh to pull the latest events.
| Event ID | Status | Timestamp | Target Vault | Latency (ms) | Semantic Chunks | Tokens Processed |
|---|---|---|---|---|---|---|
| Refresh to load ingest events. | ||||||
| Event ID | Status | Timestamp | Target Vault | Latency (ms) | Fragments Retrieved | Tokens Returned |
|---|---|---|---|---|---|---|
| Refresh to load recall events. | ||||||
Per-vault 2,000-chunk cap — prune embeddings or wipe payload logs
Wipe All Memory Logs clears ingest and recall logs only. Chunks stay until you Clear a vault.
Refresh to load vault usage.
This cannot be undone.
Split-pane diagnostic session — describe your issue and the concierge will triage.
Session ready. Ask about billing, node health, or workflow errors.
Enterprise Developer Workspace
The VIP Developer Workspace is reserved for Apex and Enterprise operators. Unlock live-fire simulation, cost X-ray telemetry, and private Concierge debug — built for teams who outgrew sandbox tooling.
Your current tier: —
Before: You need a staging environment. Vendor routes you to a calendar link and a 6-week procurement cycle.
With Parrot: Self-serve Apex & Enterprise tiers — activate a live developer workspace in minutes, not quarters.
Before: Empty API keys, empty dashboards, zero opinionated paths — every integration starts from scratch.
With Parrot: Pre-loaded simulation templates (multi-agent memory, webhook routing) so your team validates architecture on day one.
Before: Token burn shows up on a cloud invoice weeks later — no per-workflow attribution, no cache insight.
With Parrot: Cost & Caching X-Ray ties every handshake to USD, latency, and pillar — see waste before finance does.
Before: Debug production failures through scattered logs, public support queues, and guesswork.
With Parrot: Private Concierge over VPC (Port 8001) with live telemetry injection — enterprise debug without exposing your stack.
VIP Developer Workspace
Enterprise simulation, cost telemetry, and Concierge debug — unified in one operator surface. —
Instantly block Universal, Memory, and Highway API traffic to protect credits during webhook loops or runaway automation.
API traffic is live
Select a scenario, edit the request JSON, then run a live-fire drill. Responses are sanitized before display.
Select a template and click Run Simulation.
Per-pillar spend, latency, and cache-hit telemetry at a glance.
Loading telemetry…
Enterprise debug channel with deep telemetry injection. Full split-pane session available now.
10.118.0.6:8001