Skip to main content

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

Download ZIP

What's Included

FieldValue
NameGet Stock Price by Ticker
TypeWorkflow
Triggermanual
Steps1
Inputs1

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

  1. Download the ZIP file using the button above
  2. Navigate to Company Settings → Data Transfer in your AutoTalk dashboard
  3. Click Import and select the downloaded ZIP file
  4. Review the import summary and confirm
  5. All document IDs are automatically remapped — no manual ID editing needed