Get Stock Price by Ticker
Manual workflow that fetches a Brazilian stock price by ticker symbol from brapi.dev
manual http finance stocks brapi market-data
What's Included
| Field | Value |
|---|---|
| Name | Get Stock Price by Ticker |
| Type | Workflow |
| Trigger | manual |
| Steps | 1 |
| Inputs | 1 |
Full JSON
Click to expand
{
"description": "Manual workflow that fetches a Brazilian stock price by ticker symbol from brapi.dev",
"tags": [
"manual",
"http",
"finance",
"stocks",
"brapi",
"market-data"
],
"document": {
"name": "Get Stock Price by Ticker",
"enabled": true,
"log_level": "info",
"trigger": {
"type": "manual"
},
"workflowInput": [
{
"name": "ticker",
"description": "Ticker symbol (example: VALE3 or VALE3.SA)",
"schema": {
"type": "string",
"required": true
}
}
],
"steps": [
{
"condition": {
"expr": "true",
"onFailure": "throw",
"resultType": "any"
},
"action": {
"actionType": "actions/network/http/request/send",
"actions/network/http/request/send": {
"method": "GET",
"url": {
"expr": "\"https://brapi.dev/api/quote/\" + encode_uri(split(upperAscii(ticker), \".\")[0])",
"onFailure": "throw",
"resultType": "any"
},
"headers": [],
"returnBuffer": false,
"cache": false
}
}
}
],
"returnExpression": {
"expr": "get(step(0).data, \"results.0.regularMarketPrice\")"
}
}
}
How to Import
- Download the ZIP file using the button above
- Navigate to Company Settings → Data Transfer in your AutoTalk dashboard
- Click Import and select the downloaded ZIP file
- Review the import summary and confirm
- All document IDs are automatically remapped — no manual ID editing needed