cURL
curl --request GET \ --url https://api.example.com/api/symbols
{ "success": true, "symbols": [ { "symbol": "<string>", "company_name": "<string>" } ], "data_source": "<string>" }
Retrieves a list of all distinct stock symbols that have been traded
GET /api/symbols
Show Symbol Object
curl -X GET https://performance.miningwood.com/api/symbols \ -H "Cookie: session=your_session_cookie"
{ "success": true, "symbols": [ { "symbol": "AAPL", "company_name": "Apple Inc." }, { "symbol": "TSLA", "company_name": "Tesla, Inc." }, { "symbol": "MSFT", "company_name": "Microsoft Corporation" }, { "symbol": "NVDA", "company_name": "NVIDIA Corporation" } ], "data_source": "postgresql" }
Was this page helpful?