Агрегатор ПИФ НРД

Предоставление информации о паевых инвестиционных фондах

Котировки и СЧА (Quotes)

Метод включает в себя данные о котировке (стоимости) пая и стоимости чистых активов фонда

Скачать описание Документация OpenAPI





Скачать

{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "PifQuotes",
  "type": "object",
  "properties": {
    "fund_id": {
      "type": "integer",
      "format": "int64"
    },
    "company_id": {
      "type": "integer",
      "format": "int64"
    },
    "quote_date": {
      "type": "string",
      "format": "date-time"
    },
    "fund_name_short": {
      "type": "string"
    },
    "ticker_moex": {
      "type": "string"
    },
    "units_amount": {
      "type": "number"
    },
    "unit_price": {
      "type": "number"
    },
    "net_asset_value": {
      "type": "number"
    },
    "currency": {
      "type": "string"
    }
  },
  "required": [
    "fund_id",
    "company_id",
    "quote_date",
    "fund_name_short",
    "units_amount",
    "unit_price",
    "net_asset_value",
    "currency"
  ],
  "additionalProperties": false
}