glif-api-runner
2
总安装量
2
周安装量
#72692
全站排名
安装命令
npx skills add https://github.com/willsigmon/sigstack --skill glif-api-runner
Agent 安装分布
opencode
2
codex
2
claude-code
2
antigravity
2
gemini-cli
2
windsurf
1
Skill 文档
Glif API Runner
Execute Glif workflows programmatically via the Simple API.
API Basics
Base URL: https://simple-api.glif.app
Auth: Bearer token from https://glif.app/settings/api-tokens
Running a Glif
curl -X POST https://simple-api.glif.app \
-H "Authorization: Bearer $GLIF_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"id": "clgh1vxtu0011mo081dplq3xs",
"inputs": ["your prompt here"]
}'
Input Formats
Array (positional):
{"id": "glif_id", "inputs": ["input1", "input2"]}
Object (named):
{"id": "glif_id", "inputs": {"prompt": "value", "style": "anime"}}
Response Structure
{
"output": "https://res.cloudinary.com/.../image.png",
"outputFull": {"type": "IMAGE", "value": "..."},
"price": 5,
"nodes": {...}
}
Key fields:
output– Final result (URL for images, text for text)price– Credits consumederror– Error message if failed (still returns 200)
Common Patterns
Image generation:
curl -X POST https://simple-api.glif.app \
-H "Authorization: Bearer $GLIF_API_TOKEN" \
-d '{"id": "IMAGE_GLIF_ID", "inputs": ["a cat wearing a hat"]}' \
| jq -r '.output'
With visibility:
{"id": "glif_id", "inputs": [...], "visibility": "PUBLIC"}
Strict mode (fail on missing inputs):
https://simple-api.glif.app?strict=1
Error Handling
- API returns 200 even on errors – check
errorfield - Check
priceto verify credits were consumed - Token issues return 401/403
Finding Glif IDs
- Go to glif.app and find a workflow
- ID is in the URL:
glif.app/glifs/{GLIF_ID} - Or use the “API” tab on any glif page