kd
06/06/2025, 4:48 AMVapi Support Bot
06/06/2025, 4:50 AMkd
06/06/2025, 5:30 AMVapi Support Bot
06/06/2025, 5:31 AMjson
{
"url": "https://api.example.com/data",
"method": "GET",
"headers": [{ "key": "Authorization", "value": "Bearer YOUR_TOKEN" }],
"output": { "key": "result", "target": "api_result", "type": "string" }
}
See the [API Request node documentation](https://docs.vapi.ai/workflows/nodes/api-request) for more details.
Source:
- [API Request node documentation](https://docs.vapi.ai/workflows/nodes/api-request)kd
06/06/2025, 5:33 AMVapi Support Bot
06/06/2025, 5:35 AMjson
{
"url": "https://api.example.com/data",
"method": "GET",
"headers": [{ "key": "Authorization", "value": "Bearer YOUR_TOKEN" }],
"output": { "key": "result", "target": "api_result", "type": "string" }
}
For more details and step-by-step guidance, check the [main Vapi Workflows documentation](https://docs.vapi.ai/workflows).
Source:
- [Vapi Workflows documentation](https://docs.vapi.ai/workflows)kd
06/06/2025, 5:41 AMVapi Support Bot
06/06/2025, 5:42 AMjson
{
"url": "https://api.example.com/data",
"method": "GET",
"headers": [
{ "key": "Authorization", "value": "Bearer YOUR_TOKEN", "type": "string" }
],
"output": [
{ "key": "name", "target": "user_name", "type": "string" },
{ "key": "age", "target": "user_age", "type": "number" }
]
}
This will extract name and age from the API response and make them available as variables in your workflow. For more details, see the [Vapi Workflows documentation](https://docs.vapi.ai/workflows).
Source:
- [Vapi Workflows documentation](https://docs.vapi.ai/workflows)kd
06/06/2025, 6:00 AMVapi Support Bot
06/06/2025, 6:03 AMKings_bigđź’«
06/06/2025, 6:54 AMkd
06/06/2025, 7:58 AMkd
06/06/2025, 7:59 AMVapi Support Bot
06/06/2025, 8:00 AMjson
{
"output": {
"type": "object",
"properties": {
"name": { "type": "string", "target": "user_name" },
"age": { "type": "number" }
}
}
}
This will make user_name and age available as variables in the rest of your workflow. If you don't see an output/schema section, try expanding advanced or schema options in the node panel.
Reference: [API Request node documentation](https://docs.vapi.ai/workflows/nodes/api-request)
Source:
- [API Request node documentation](https://docs.vapi.ai/workflows/nodes/api-request)Kings_bigđź’«
06/06/2025, 8:01 AMkd
06/06/2025, 8:27 AMKings_bigđź’«
06/06/2025, 8:59 AMkd
06/06/2025, 9:29 AMKyle
06/08/2025, 6:19 AMkd
06/09/2025, 7:35 AMKyle
06/10/2025, 3:34 AM