Skip to main content

Documentation Index

Fetch the complete documentation index at: https://polargrid.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

No-Code Integrations

PolarGrid’s OpenAI-compatible API works with any automation tool that supports HTTP requests. This guide shows how to connect from no-code platforms.

Authentication Setup

PolarGrid edge endpoints accept your pg_* API key directly — a single HTTP node is all you need.

Make Inference Calls

Configure an HTTP Request node:
FieldValue
MethodPOST
URLhttps://api.yto-01.edge.polargrid.ai/v1/chat/completions
HeaderAuthorization: Bearer pg_your_api_key
HeaderContent-Type: application/json
BodySee below
{
  "model": "qwen-3.5-9b",
  "messages": [
    {"role": "user", "content": "Your prompt here"}
  ]
}

n8n

In n8n, use a single HTTP Request node:
  • POST to https://api.yto-01.edge.polargrid.ai/v1/chat/completions
  • Authorization: Bearer pg_your_api_key
  • Content-Type: application/json
  • Body: the chat completion JSON above
Store the API key in n8n’s credentials store rather than hardcoding it in the node.

Zapier / Make / Other Tools

Any tool with HTTP request support can call PolarGrid edge endpoints in a single step:
  1. HTTP step: POST to the edge URL with Authorization: Bearer pg_*
The key differences per platform:
  • Zapier: Use a “Webhooks by Zapier” action (Custom Request)
  • Make (Integromat): Use an “HTTP — Make a request” module
  • Pipedream: Use a Node.js or HTTP step

Available Endpoints

All standard PolarGrid endpoints work from no-code tools:
EndpointUse Case
POST /v1/chat/completionsChat / text generation
POST /v1/audio/transcriptionsSpeech-to-text (send audio file as form data)
POST /v1/audio/speechText-to-speech (returns audio bytes)
GET /v1/modelsList available models

Choosing a Region

Pick the region closest to your automation platform’s servers:
RegionIDBest For
Torontoyto-01US East, Eastern Canada
Vancouveryvr-02US West, Western Canada
Montrealyul-01Northeast US, Eastern Canada
Replace the region ID in the URL: https://api.{region-id}.edge.polargrid.ai