1. Stocks
Graph Swiss API
  • Introduction
  • Quickstart
  • Authentication
  • Base URL
  • Errors
  • Request ID
  • Conventions
  • API
    • Health
      • Liveness probe
    • Companies
      • Search companies
      • AI-powered company search
      • Get company by ID
      • Get company journal summaries
      • Get full SHAB journal texts
      • Get detailed company report
    • Persons
      • Search persons
      • Get person by ID
    • Stocks
      • List active Swiss stock symbols
        GET
      • Get real-time stock quote
        GET
      • Get current stock price
        GET
      • Get historical OHLCV data
        GET
      • Get latest end-of-day data
        GET
      • Get company profile and statistics
        GET
      • Get income statement, balance sheet, and cash flow
        GET
      • Get key executives for a stock
        GET
  • Schemas
    • StockSymbol
    • Error
    • StockQuote
    • Company
    • StockPrice
    • CompanyDetail
    • StockHistoryValue
    • Code
    • StockHistory
    • CompanyWithRelations
    • StockEod
    • CompanyListPage
    • StockProfile
    • Person
    • StockIncomeStatement
    • ShabJournal
    • StockBalanceSheet
    • PersonCompanyLink
    • StockCashFlow
    • PersonWithCompanies
    • StockFinancials
    • PersonListPage
    • StockKeyExecutive
  1. Stocks

List active Swiss stock symbols

GET
/api/stocks/symbols
Paginated list of all active stock symbols traded on Swiss exchanges.
Use the optional search parameter for substring filtering on symbol or name.

Request

Authorization
API Key
Add parameter in header
X-API-Key
Example:
X-API-Key: ********************
or
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/stocks/symbols?limit=50&offset&search=NES' \
--header 'X-API-Key: <api-key>'

Responses

🟢200
application/json
Paginated stock symbols.
Body

Example
{
    "success": true,
    "data": {
        "total": 250,
        "items": [
            {
                "id": 0,
                "symbol": "string",
                "name": "string",
                "currency": "string",
                "exchange": "string",
                "mic_code": "string",
                "country": "string",
                "type": "string",
                "logo_url": "string",
                "is_active": true
            }
        ]
    }
}
🟠400BadRequest
🟠401Unauthorized
🟠402PaymentRequired
🟠429TooManyRequests
🔴502UpstreamError
Modified at 2026-05-01 06:16:37
Previous
Get person by ID
Next
Get real-time stock quote
Built with