Stock Market Data API

The Stock Market Data API allows developers to retrieve real-time stock prices and lookup available stock symbols. This API is designed for applications requiring accurate and up-to-date market data.


POST/utilities/stock/realtime-pricing

Get Real-Time Stock Pricing

Retrieves real-time stock prices for a given list of stock symbols.

Required Attributes

  • Name
    symbols
    Type
    array of strings
    Description

    List of stock symbols to retrieve pricing for.

Request

POST
/utilities/stock/realtime-pricing
curl --location 'https://api.stack-ft.com/utilities/stock/realtime-pricing' \
--header 'Authorization: {api_key}' \
--header 'Content-Type: application/json' \
--data '{ "symbols": ["TSLA", "BA"] }'

Response

{
  "status": "success",
  "stock_symbols": ["TSLA", "BA"],
  "stock_data": [
    {"symbol": "TSLA", "price": 293.045, "volume": 115696968},
    {"symbol": "BA", "price": 174.63, "volume": 3981385}
  ],
  "request_id": "5d35018d-dc78-4ee8-b778-981ee5bd7118",
  "request_time": "2025-03-02T20:45:03.929Z"
}

GET/utilities/stock/symbols

Get Stock Symbols

Retrieves a list of available stock symbols with their names.

Request

GET
/utilities/stock/symbols
curl --location 'https://api.stack-ft.com/utilities/stock/symbols' \
--header 'Authorization: {api_key}'

Response

{
  "status": "success",
  "stock_symbols": [
    {"symbol": "RTH.AX", "name": "RAS Technology Holdings Limited"},
    {"symbol": "002628.SZ", "name": "Chengdu Road & Bridge Engineering CO.,LTD"},
    {"symbol": "BRIOF", "name": "Magna Terra Minerals Inc."},
    {"symbol": "DMC.CN", "name": "Dunbar Metals Corp"}
  ]
}

Error Handling & Troubleshooting

Common Errors

  • Name
    missing_parameters
    Type
    400 Bad Request
    Description

    Returned if the request is missing required parameters (e.g., symbols).

  • Name
    permission_error
    Type
    401 Unauthorized
    Description

    Returned if the user lacks necessary API privileges.

  • Name
    server_error
    Type
    500 Internal Server Error
    Description

    Returned if the server encounters an unexpected issue.

Example Error Response

{
  "status": "error",
  "message": "Missing required parameters: \"symbols\" is required.",
  "request_id": "c1a7f3e2-1a94-4b82-b9b2-445a1b6242cd",
  "request_time": "2025-03-02T01:40:21.564Z"
}

For additional support, ensure that all parameters are correctly formatted before contacting customer service.

Was this page helpful?