Skip to main content
GET
/
api
/
symbols
Get Symbols
curl --request GET \
  --url https://api.example.com/api/symbols
{
  "success": true,
  "symbols": [
    {
      "symbol": "<string>",
      "company_name": "<string>"
    }
  ],
  "data_source": "<string>"
}

Endpoint

GET /api/symbols

Authentication

Requires OAuth 2.0 authentication via session cookies.

Parameters

None

Response

success
boolean
required
Indicates if the request was successful
symbols
array
required
List of symbol objects
data_source
string
required
Database source (always “postgresql”)

Example

curl -X GET https://performance.miningwood.com/api/symbols \
  -H "Cookie: session=your_session_cookie"

Response Example

{
  "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"
}