Xignite NAVs API

Mutual fund net asset values (NAVs), adjustment factors, and fund pricing history from the navs.xignite.com service.

Operations 16

GET /v2/xNAVs/ListSymbols
GET /v2/xNAVs/ListNewSymbols
GET /v2/xNAVs/GetDividendHistory
GET /v2/xNAVs/GetCashDividendHistory
GET /v2/xNAVs/GetAllCashDividendHistory
GET /v2/xNAVs/GetNAV
GET /v2/xNAVs/GetNAVs
GET /v2/xNAVs/GetHistoricalNAVs
GET /v2/xNAVs/GetHistoricalNAVsTrailing
GET /v2/xNAVs/GetLatestNAV
GET /v2/xNAVs/GetLatestNAVs
GET /v2/xNAVs/GetHistoricalNAVsRange
GET /v2/xNAVs/GetHistoricalNAVsAsOf
GET /v2/xNAVs/GetSplitHistory
GET /v2/xNAVs/GetSplitsByExchange
GET /v2/xNAVs/GetAdjustmentFactors

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/xignite-navs-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

xignite-xignitenavs-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: XigniteBonds CloudAlerts Xignite NA Vs API
  version: 1.0.3
servers:
- url: https://navs.xignite.com
security:
- basic: []
tags:
- name: XigniteNAVs
paths:
  /v2/xNAVs/ListSymbols:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: StartSymbol
        in: query
        schema:
          type: string
      - name: EndSymbol
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fund'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fund'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fund'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fund'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Fund'
  /v2/xNAVs/ListNewSymbols:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NewFund'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NewFund'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NewFund'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NewFund'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NewFund'
  /v2/xNAVs/GetDividendHistory:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DividendHistory'
            text/json:
              schema:
                $ref: '#/components/schemas/DividendHistory'
            application/xml:
              schema:
                $ref: '#/components/schemas/DividendHistory'
            text/xml:
              schema:
                $ref: '#/components/schemas/DividendHistory'
            text/csv:
              schema:
                $ref: '#/components/schemas/DividendHistory'
  /v2/xNAVs/GetCashDividendHistory:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CompleteDividendHistory'
            text/json:
              schema:
                $ref: '#/components/schemas/CompleteDividendHistory'
            application/xml:
              schema:
                $ref: '#/components/schemas/CompleteDividendHistory'
            text/xml:
              schema:
                $ref: '#/components/schemas/CompleteDividendHistory'
            text/csv:
              schema:
                $ref: '#/components/schemas/CompleteDividendHistory'
  /v2/xNAVs/GetAllCashDividendHistory:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompleteDividendHistory'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompleteDividendHistory'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompleteDividendHistory'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompleteDividendHistory'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/CompleteDividendHistory'
  /v2/xNAVs/GetNAV:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlobalNAV'
            text/json:
              schema:
                $ref: '#/components/schemas/GlobalNAV'
            application/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAV'
            text/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAV'
            text/csv:
              schema:
                $ref: '#/components/schemas/GlobalNAV'
  /v2/xNAVs/GetNAVs:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifiers
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalNAV'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalNAV'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalNAV'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalNAV'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/GlobalNAV'
  /v2/xNAVs/GetHistoricalNAVs:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      - name: AdjustmentMethod
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/AdjustmentMethods'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/json:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            application/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/csv:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
  /v2/xNAVs/GetHistoricalNAVsTrailing:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: EndDate
        in: query
        schema:
          type: string
      - name: PeriodType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/PeriodTypes'
      - name: Periods
        in: query
        schema:
          type: integer
          format: int32
      - name: AdjustmentMethod
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/AdjustmentMethods'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/json:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            application/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/xml:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
            text/csv:
              schema:
                $ref: '#/components/schemas/GlobalNAVs'
  /v2/xNAVs/GetLatestNAV:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundNAV'
            text/json:
              schema:
                $ref: '#/components/schemas/FundNAV'
            application/xml:
              schema:
                $ref: '#/components/schemas/FundNAV'
            text/xml:
              schema:
                $ref: '#/components/schemas/FundNAV'
            text/csv:
              schema:
                $ref: '#/components/schemas/FundNAV'
  /v2/xNAVs/GetLatestNAVs:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifiers
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundNAV'
            text/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundNAV'
            application/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundNAV'
            text/xml:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundNAV'
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/FundNAV'
  /v2/xNAVs/GetHistoricalNAVsRange:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/json:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            application/xml:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/xml:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/csv:
              schema:
                $ref: '#/components/schemas/FundNAVs'
  /v2/xNAVs/GetHistoricalNAVsAsOf:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/IdentifierTypes'
      - name: EndDate
        in: query
        schema:
          type: string
      - name: PeriodType
        in: query
        schema:
          allOf:
          - $ref: '#/components/schemas/PeriodTypes'
      - name: Periods
        in: query
        schema:
          type: integer
          format: int32
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/json:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            application/xml:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/xml:
              schema:
                $ref: '#/components/schemas/FundNAVs'
            text/csv:
              schema:
                $ref: '#/components/schemas/FundNAVs'
  /v2/xNAVs/GetSplitHistory:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          type: string
      - name: IdentifierAsOfDate
        in: query
        schema:
          type: string
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SplitHistory'
            text/json:
              schema:
                $ref: '#/components/schemas/SplitHistory'
            application/xml:
              schema:
                $ref: '#/components/schemas/SplitHistory'
            text/xml:
              schema:
                $ref: '#/components/schemas/SplitHistory'
            text/csv:
              schema:
                $ref: '#/components/schemas/SplitHistory'
  /v2/xNAVs/GetSplitsByExchange:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Exchange
        in: query
        schema:
          type: string
      - name: ExDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeSplitsList'
            text/json:
              schema:
                $ref: '#/components/schemas/ExchangeSplitsList'
            application/xml:
              schema:
                $ref: '#/components/schemas/ExchangeSplitsList'
            text/xml:
              schema:
                $ref: '#/components/schemas/ExchangeSplitsList'
            text/csv:
              schema:
                $ref: '#/components/schemas/ExchangeSplitsList'
  /v2/xNAVs/GetAdjustmentFactors:
    get:
      tags:
      - XigniteNAVs
      parameters:
      - name: Identifier
        in: query
        schema:
          type: string
      - name: IdentifierType
        in: query
        schema:
          type: string
      - name: StartDate
        in: query
        schema:
          type: string
      - name: EndDate
        in: query
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AdjustmentFactors'
            text/json:
              schema:
                $ref: '#/components/schemas/AdjustmentFactors'
            application/xml:
              schema:
                $ref: '#/components/schemas/AdjustmentFactors'
            text/xml:
              schema:
                $ref: '#/components/schemas/AdjustmentFactors'
            text/csv:
              schema:
                $ref: '#/components/schemas/AdjustmentFactors'
components:
  schemas:
    CompleteDividend:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Security:
            allOf:
            - $ref: '#/components/schemas/Security'
          Currency:
            type:
            - string
            - 'null'
          Code:
            type:
            - string
            - 'null'
          Type:
            type:
            - string
            - 'null'
          PaymentFrequency:
            type:
            - string
            - 'null'
          DeclaredDate:
            type:
            - string
            - 'null'
          RecordDate:
            type:
            - string
            - 'null'
          PayDate:
            type:
            - string
            - 'null'
          ExDate:
            type:
            - string
            - 'null'
          DividendAmount:
            type: number
            format: double
          DataConfidence:
            type:
            - string
            - 'null'
        additionalProperties: false
    AdjustmentMethods:
      enum:
      - None
      - DefaultValue
      - SplitOnly
      - CashDividendOnly
      - SplitAndProportionalCashDividend
      - All
      type: string
    SplitHistory:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Security:
            allOf:
            - $ref: '#/components/schemas/Security'
          StartDate:
            type:
            - string
            - 'null'
          EndDate:
            type:
            - string
            - 'null'
          CumulativeSplitRatio:
            type: number
            format: double
          Splits:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/Split'
        additionalProperties: false
    CompleteDividendHistory:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Security:
            allOf:
            - $ref: '#/components/schemas/Security'
          Dividends:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/CompleteDividend'
        additionalProperties: false
    ExchangeSplit:
      type: object
      properties:
        Security:
          allOf:
          - $ref: '#/components/schemas/Security'
        Split:
          allOf:
          - $ref: '#/components/schemas/Split'
      additionalProperties: false
    Dividend:
      type: object
      properties:
        Date:
          type:
          - string
          - 'null'
        Amount:
          type: number
          format: double
      additionalProperties: false
    SymbolType:
      enum:
      - NetAssetValue
      - IntradayIndicativeValue
      type: string
    GlobalNAVs:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Fund:
            allOf:
            - $ref: '#/components/schemas/Fund'
          StartDate:
            type:
            - string
            - 'null'
          EndDate:
            type:
            - string
            - 'null'
          NAVs:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/GlobalNAV'
        additionalProperties: false
    GlobalNAV:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Fund:
            allOf:
            - $ref: '#/components/schemas/Fund'
          Date:
            type:
            - string
            - 'null'
          Time:
            type:
            - string
            - 'null'
          UTCOffset:
            type: number
            format: double
          NAV:
            type: number
            format: double
          PreviousNAV:
            type: number
            format: double
          Change:
            type: number
            format: double
          PercentChange:
            type: number
            format: double
          SevenDayYield:
            type: number
            format: double
          PreviousSevenDayYield:
            type: number
            format: double
          PremiumDiscount:
            type: number
            format: double
          Currency:
            type:
            - string
            - 'null'
          CumulativeAdjustmentFactor:
            type: number
            format: double
        additionalProperties: false
    OutcomeTypes:
      enum:
      - Success
      - SystemError
      - RequestError
      - RegistrationError
      type: string
    QuoteWithSecurity:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Security:
            allOf:
            - $ref: '#/components/schemas/Security'
        additionalProperties: false
    AdjustmentFactor:
      type: object
      additionalProperties: false
    Split:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          ExDate:
            type:
            - string
            - 'null'
          Numerator:
            type: number
            format: double
          Denominator:
            type: number
            format: double
          SplitRatio:
            type: number
            format: double
        additionalProperties: false
    Security:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          CIK:
            type:
            - string
            - 'null'
          CUSIP:
            type:
            - string
            - 'null'
          Symbol:
            type:
            - string
            - 'null'
          ISIN:
            type:
            - string
            - 'null'
          Valoren:
            type:
            - string
            - 'null'
          Name:
            type:
            - string
            - 'null'
          Market:
            type:
            - string
            - 'null'
          MarketIdentificationCode:
            type:
            - string
            - 'null'
          MostLiquidExchange:
            type: boolean
          CategoryOrIndustry:
            type:
            - string
            - 'null'
        additionalProperties: false
    ExchangeSplitsList:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          ExchangeSplits:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/ExchangeSplit'
        additionalProperties: false
    DividendHistory:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Symbol:
            type:
            - string
            - 'null'
          Dividends:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/Dividend'
        additionalProperties: false
    IdentifierTypes:
      enum:
      - Symbol
      - CIK
      - CUSIP
      - ISIN
      - Valoren
      - SEDOL
      - FIGI
      - CompositeFIGI
      type: string
    FundNAV:
      allOf:
      - $ref: '#/components/schemas/QuoteWithSecurity'
      - type: object
        properties:
          Date:
            type:
            - string
            - 'null'
          Last:
            type: number
            format: double
          Open:
            type: number
            format: double
          LastClose:
            type: number
            format: double
          ChangeFromOpen:
            type: number
            format: double
          PercentChangeFromOpen:
            type: number
            format: double
          ChangeFromLastClose:
            type: number
            format: double
          PercentChangeFromLastClose:
            type: number
            format: double
        additionalProperties: false
    NewFund:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Symbol:
            type:
            - string
            - 'null'
          DateAdded:
            type:
            - string
            - 'null'
        additionalProperties: false
    PeriodTypes:
      enum:
      - Day
      - Week
      - Month
      - Quarter
      - Year
      type: string
    Common:
      type: object
      properties:
        Delay:
          type: number
          format: double
        Identity:
          type:
          - string
          - 'null'
        Message:
          type:
          - string
          - 'null'
        Outcome:
          allOf:
          - $ref: '#/components/schemas/OutcomeTypes'
      additionalProperties: false
    AdjustmentFactors:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          Security:
            allOf:
            - $ref: '#/components/schemas/Security'
          ArrayOfAdjustmentFactor:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/AdjustmentFactor'
        additionalProperties: false
    FundNAVs:
      allOf:
      - $ref: '#/components/schemas/QuoteWithSecurity'
      - type: object
        properties:
          StartDate:
            type:
            - string
            - 'null'
          EndDate:
            type:
            - string
            - 'null'
          NAVs:
            type:
            - array
            - 'null'
            items:
              $ref: '#/components/schemas/FundNAV'
        additionalProperties: false
    Fund:
      allOf:
      - $ref: '#/components/schemas/Common'
      - type: object
        properties:
          CIK:
            type:
            - string
            - 'null'
          CUSIP:
            type:
            - string
            - 'null'
          Symbol:
            type:
            - string
            - 'null'
          SymbolType:
            allOf:
            - $ref: '#/components/schemas/SymbolType'
          ListingSymbol:
            type:
            - string
            - 'null'
          ISIN:
            type:
            - string
            - 'null'
          Valoren:
            type:
            - string
            - 'null'
          Name:
            type:
            - string
            - 'null'
          Market:
            type:
            - string
            - 'null'
          MarketIdentificationCode:
            type:
            - string
            - 'null'
          CategoryOrIndustry:
            type:
            - string
            - 'null'
          InstrumentClass:
            type:
            - string
            - 'null'
          Domicile:
            type:
            - string
            - 'null'
        additionalProperties: false
  securitySchemes:
    basic:
      type: apiKey
      description: Token for your account.
      name: _token
      in: query