> ## Documentation Index
> Fetch the complete documentation index at: https://docs.quantoraresearch.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get sovereign rates analytics



## OpenAPI

````yaml GET /rates/{scope}
openapi: 3.1.0
info:
  title: Financial Data API
  version: 0.1.0
  description: Raw-first, derived-ready financial data infrastructure API.
servers:
  - url: https://api.financialdatapi.com
security:
  - apiKey: []
  - bearerApiKey: []
paths:
  /rates/{scope}:
    get:
      summary: Get sovereign rates analytics
      responses:
        '200':
          description: >-
            Deterministic rates analytics for one country against its peer set:
            sovereign spreads per tenor (2y/5y/10y/30y) versus each peer and the
            peer mean, plus curve slopes (2s10s, 5s30s) within each country.
            Computed from the latest public government-bond yields already
            served by this API; tenors with no ingested yield are absent rather
            than interpolated. Supported scopes are AUS, CAN, CHE, EUR, GBR,
            JPN, and USA. Other scopes return 404 with the supported scope list.
            Takes no query parameters.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ItemEnvelope'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
components:
  schemas:
    ItemEnvelope:
      type: object
      required:
        - data
        - meta
        - requestId
      properties:
        data:
          type: object
        meta:
          type: object
        requestId:
          type: string
    ErrorEnvelope:
      type: object
      required:
        - error
        - requestId
      properties:
        error:
          type: object
          required:
            - code
            - message
            - request_id
            - requestId
          properties:
            code:
              type: string
            message:
              type: string
            request_id:
              type: string
            requestId:
              type: string
            details: {}
        requestId:
          type: string
  responses:
    Unauthorized:
      description: Missing or invalid API key
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    Forbidden:
      description: API key lacks required scope
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
    NotFound:
      description: Resource not found
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorEnvelope'
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
    bearerApiKey:
      type: http
      scheme: bearer

````