Short answer: You can make api call in Anthropic by hand from its own interface, but it won’t repeat itself. On TinyCommand, add the Anthropic Make API Call action to a workflow, map its 4 inputs from any upstream app, and it runs automatically every time the trigger fires. No code, and a free tier to start.
Every field can be mapped from an upstream trigger, AI step, table row, or hard-coded literal.
| Field | Type | Required | Description |
|---|---|---|---|
Method method | options | Required | Method. Options: GET, POST, PUT, PATCH, DELETE |
Path path | string | Required | API path (appended to https://api.anthropic.com) |
Request Body body | json | Optional | JSON body (for POST/PUT/PATCH) |
Beta Header beta | string | Optional | Optional anthropic-beta header for beta features |
{"method": "{{trigger.method}}","path": "e.g. /v1/messages","body": "e.g. Hi there, thanks for reaching out.","beta": "e.g. files-api-2025-04-14"}
{"data": {},"type": "response"}
Use these fields in downstream nodes for routing, logging, or error handling.
Any of these apps can fire this action as part of a workflow.