Created
December 22, 2020 10:39
-
-
Save pradeepbishnoi/020fe06a86a041b0025a3b0133ab58ab to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (ns bonds | |
| (:require [clojure.string :as str] | |
| [clojure.data.json :as json])) | |
| (defn string-keys-to-symbols [map] | |
| (reduce #(assoc %1 (-> (key %2) keyword) (val %2)) {} map)) | |
| (def djs (string-keys-to-symbols (json/read-str (slurp "/opt/bond_rate/tmp.txt") :key-fn keyword))) | |
| (filter #(> (:coupon %) 13) (get-in djs [:data :bonds])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "status": "success", | |
| "data": { | |
| "bonds": [ | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 27284, | |
| "current_ytm": 9.99, | |
| "display_name": "Icici Limited", | |
| "face_value": 40000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11AO1", | |
| "issue_size": null, | |
| "last_traded_on": 1545177600, | |
| "maturity_date": 1671840000, | |
| "rated_as_on": 1570406400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7648, | |
| "ttm": "2y 2d" | |
| }, | |
| { | |
| "coupon": 10.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 509750, | |
| "current_ytm": 9.94, | |
| "display_name": "Fullerton India Credit Company Ltd 10.5%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08579", | |
| "issue_size": null, | |
| "last_traded_on": 1556755200, | |
| "maturity_date": 1698364800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "2y 10m 5d" | |
| }, | |
| { | |
| "coupon": 11.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1041781, | |
| "current_ytm": 9.85, | |
| "display_name": "Fullerton India Credit Company Ltd 11.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08553", | |
| "issue_size": null, | |
| "last_traded_on": 1563408000, | |
| "maturity_date": 1666915200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "1y 10m 6d" | |
| }, | |
| { | |
| "coupon": 9.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 989500, | |
| "current_ytm": 9.84, | |
| "display_name": "Fullerton India Credit Company Ltd 9.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08587", | |
| "issue_size": null, | |
| "last_traded_on": 1545177600, | |
| "maturity_date": 1735171200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 4d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 950, | |
| "current_ytm": 9.83, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LZ5", | |
| "issue_size": 278300000, | |
| "last_traded_on": 1563235200, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 9.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 998500, | |
| "current_ytm": 9.82, | |
| "display_name": "State Bank Of Bikaner And Jaipur\n9.78 Bd 15Ot22 Fvrs10Lac L.T.D 9.78%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE648A09052", | |
| "issue_size": null, | |
| "last_traded_on": 1493683200, | |
| "maturity_date": 1665792000, | |
| "rated_as_on": 1573084800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "1y 9m 23d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2087743, | |
| "current_ytm": 9.77, | |
| "display_name": "Andhra Pradesh Expressway Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE400K07077", | |
| "issue_size": null, | |
| "last_traded_on": 1592265600, | |
| "maturity_date": 1760486400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4724, | |
| "ttm": "4y 9m 23d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020684, | |
| "current_ytm": 9.75, | |
| "display_name": "Fullerton India Credit Company Ltd", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE535H07AQ5", | |
| "issue_size": null, | |
| "last_traded_on": 1551139200, | |
| "maturity_date": 1650326400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1253, | |
| "ttm": "1y 3m 28d" | |
| }, | |
| { | |
| "coupon": 10.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 522078.5, | |
| "current_ytm": 9.68, | |
| "display_name": "Fullerton India Credit Company Ltd 10.45%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07357", | |
| "issue_size": null, | |
| "last_traded_on": 1425254400, | |
| "maturity_date": 1698969600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "2y 10m 12d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1183741.25, | |
| "current_ytm": 9.68, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HA2", | |
| "issue_size": null, | |
| "last_traded_on": 1392249600, | |
| "maturity_date": 1711670400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "3y 3m 7d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1251656.25, | |
| "current_ytm": 9.62, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IK9", | |
| "issue_size": null, | |
| "last_traded_on": 1321920000, | |
| "maturity_date": 1748649600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "4y 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1198618.75, | |
| "current_ytm": 9.58, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GY4", | |
| "issue_size": null, | |
| "last_traded_on": 1387411200, | |
| "maturity_date": 1648512000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "1y 3m 7d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 988000, | |
| "current_ytm": 9.57, | |
| "display_name": "Fullerton India Credit Company Ltd 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08678", | |
| "issue_size": null, | |
| "last_traded_on": 1583366400, | |
| "maturity_date": 1771977600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 2m 3d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 983839, | |
| "current_ytm": 9.53, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07080", | |
| "issue_size": null, | |
| "last_traded_on": 1533513600, | |
| "maturity_date": 1648684800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2178, | |
| "ttm": "1y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 928300, | |
| "current_ytm": 9.52, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07398", | |
| "issue_size": null, | |
| "last_traded_on": 1381276800, | |
| "maturity_date": 1685318400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m 7d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1019645, | |
| "current_ytm": 9.52, | |
| "display_name": "Fullerton India Credit Company Ltd", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE535H07AT9", | |
| "issue_size": null, | |
| "last_traded_on": 1553212800, | |
| "maturity_date": 1649808000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1211, | |
| "ttm": "1y 3m 22d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 68715, | |
| "current_ytm": 9.5, | |
| "display_name": "Icici Limited ", | |
| "face_value": 100000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11382", | |
| "issue_size": null, | |
| "last_traded_on": 1556064000, | |
| "maturity_date": 1686441600, | |
| "rated_as_on": 1577750400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8179, | |
| "ttm": "2y 5m 20d" | |
| }, | |
| { | |
| "coupon": 7.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 961920, | |
| "current_ytm": 9.49, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 7.82%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07381", | |
| "issue_size": null, | |
| "last_traded_on": 1542067200, | |
| "maturity_date": 1625011200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2155, | |
| "ttm": " 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1004500, | |
| "current_ytm": 9.43, | |
| "display_name": "Fullerton India Credit Company Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08595", | |
| "issue_size": null, | |
| "last_traded_on": 1452643200, | |
| "maturity_date": 1749513600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 5m 19d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1002686, | |
| "current_ytm": 9.41, | |
| "display_name": "Fullerton India Credit Company Ltd 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08736", | |
| "issue_size": null, | |
| "last_traded_on": 1535932800, | |
| "maturity_date": 1847664000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 6m 28d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000000, | |
| "current_ytm": 9.4, | |
| "display_name": "Fullerton India Credit Company Ltd 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08629", | |
| "issue_size": null, | |
| "last_traded_on": 1459123200, | |
| "maturity_date": 1659484800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 7m 12d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1017200, | |
| "current_ytm": 9.4, | |
| "display_name": "Sundaram Finance Limited 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BP4", | |
| "issue_size": null, | |
| "last_traded_on": 1459987200, | |
| "maturity_date": 1675123200, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 997900, | |
| "current_ytm": 9.39, | |
| "display_name": "Family Credit Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08046", | |
| "issue_size": null, | |
| "last_traded_on": 1552867200, | |
| "maturity_date": 1769644800, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 1m 7d" | |
| }, | |
| { | |
| "coupon": 10.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1061300, | |
| "current_ytm": 9.38, | |
| "display_name": "Family Credit Limited 10.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08020", | |
| "issue_size": null, | |
| "last_traded_on": 1544054400, | |
| "maturity_date": 1711497600, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 5d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 28378, | |
| "current_ytm": 9.36, | |
| "display_name": "Icici Limited ", | |
| "face_value": 40000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11AC6", | |
| "issue_size": null, | |
| "last_traded_on": 1543190400, | |
| "maturity_date": 1664236800, | |
| "rated_as_on": 1570406400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7651, | |
| "ttm": "1y 9m 5d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1010300, | |
| "current_ytm": 9.35, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BO2", | |
| "issue_size": null, | |
| "last_traded_on": 1594339200, | |
| "maturity_date": 2027376000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5943, | |
| "ttm": "13y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000000, | |
| "current_ytm": 9.35, | |
| "display_name": "Family Credit Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08053", | |
| "issue_size": null, | |
| "last_traded_on": 1468368000, | |
| "maturity_date": 1770595200, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 1m 18d" | |
| }, | |
| { | |
| "coupon": 9.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1000910, | |
| "current_ytm": 9.35, | |
| "display_name": "Power Finance Corporation Ltd 9.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08EU6", | |
| "issue_size": null, | |
| "last_traded_on": 1559865600, | |
| "maturity_date": 1656460800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 6m 7d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 993170, | |
| "current_ytm": 9.3, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07233", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1798675200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4165, | |
| "ttm": "6y 9d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99404.8, | |
| "current_ytm": 9.3, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07647", | |
| "issue_size": null, | |
| "last_traded_on": 1593043200, | |
| "maturity_date": 1664496000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1739, | |
| "ttm": "1y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 996800, | |
| "current_ytm": 9.29, | |
| "display_name": "Sbi Global Factors Limited 9.22%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE912E08AD9", | |
| "issue_size": null, | |
| "last_traded_on": 1435536000, | |
| "maturity_date": 1627516800, | |
| "rated_as_on": 1576800000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 7m 7d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 991396, | |
| "current_ytm": 9.29, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07282", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1877472000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5077, | |
| "ttm": "8y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 992815, | |
| "current_ytm": 9.29, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07241", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1814313600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4346, | |
| "ttm": "6y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1240000, | |
| "current_ytm": 9.29, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.9%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GL1", | |
| "issue_size": null, | |
| "last_traded_on": 1538352000, | |
| "maturity_date": 1614211200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": " 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.270433, | |
| "current_price": 493800, | |
| "current_ytm": 9.27, | |
| "display_name": "Canfin Homes Limited 8.94%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE477A08025", | |
| "issue_size": null, | |
| "last_traded_on": 1579219200, | |
| "maturity_date": 1733184000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 11d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1002000, | |
| "current_ytm": 9.26, | |
| "display_name": "L&T Housing Finance Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476M08048", | |
| "issue_size": null, | |
| "last_traded_on": 1553731200, | |
| "maturity_date": 1753315200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 2d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 999400, | |
| "current_ytm": 9.26, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07632", | |
| "issue_size": null, | |
| "last_traded_on": 1461801600, | |
| "maturity_date": 1980115200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 6096, | |
| "ttm": "11y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07112", | |
| "issue_size": null, | |
| "last_traded_on": 1332979200, | |
| "maturity_date": 1647043200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1021000, | |
| "current_ytm": 9.25, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07199", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 2029536000, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6234, | |
| "ttm": "13y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07146", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1741737600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "4y 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07120", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1678579200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "2y 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07104", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1615507200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": " 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000000, | |
| "current_ytm": 9.25, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07400", | |
| "issue_size": null, | |
| "last_traded_on": 1462233600, | |
| "maturity_date": 1798675200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3996, | |
| "ttm": "6y 9d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07153", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1773273600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "5y 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 999700, | |
| "current_ytm": 9.25, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07418", | |
| "issue_size": null, | |
| "last_traded_on": 1461801600, | |
| "maturity_date": 1806451200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4086, | |
| "ttm": "6y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07138", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1710201600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "3y 2m 19d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100000, | |
| "current_ytm": 9.25, | |
| "display_name": "Nhpc Limited 9.25%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07161", | |
| "issue_size": null, | |
| "last_traded_on": 1333411200, | |
| "maturity_date": 1804809600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 2m 18d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 81380, | |
| "current_ytm": 9.24, | |
| "display_name": "Icici Limited ", | |
| "face_value": 100000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11531", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1681603200, | |
| "rated_as_on": 1577750400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8125, | |
| "ttm": "2y 3m 25d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 958700, | |
| "current_ytm": 9.24, | |
| "display_name": "Indian Railway Finance Corporation\n8.65 Loa 03Fb25 Fvrs10Lac L.T.D 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GQ6", | |
| "issue_size": null, | |
| "last_traded_on": 1379548800, | |
| "maturity_date": 1738540800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 1m 12d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 993.03, | |
| "current_ytm": 9.2, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.44%", | |
| "face_value": 1000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774D08LQ4", | |
| "issue_size": 70866000, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1638748800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2009, | |
| "ttm": " 11m 14d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 993233, | |
| "current_ytm": 9.18, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07098", | |
| "issue_size": null, | |
| "last_traded_on": 1530489600, | |
| "maturity_date": 1680220800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2543, | |
| "ttm": "2y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 975511, | |
| "current_ytm": 9.16, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07251", | |
| "issue_size": null, | |
| "last_traded_on": 1532476800, | |
| "maturity_date": 1676937600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1841, | |
| "ttm": "2y 1m 30d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1011345, | |
| "current_ytm": 9.16, | |
| "display_name": "L&T Housing Finance Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476M08014", | |
| "issue_size": null, | |
| "last_traded_on": 1454284800, | |
| "maturity_date": 1738108800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 7d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1004300, | |
| "current_ytm": 9.16, | |
| "display_name": "Aditya Birla Finance Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DM8", | |
| "issue_size": null, | |
| "last_traded_on": 1557446400, | |
| "maturity_date": 1752192000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "4y 6m 19d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1012000, | |
| "current_ytm": 9.14, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07AY3", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1901059200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4481, | |
| "ttm": "9y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 999144, | |
| "current_ytm": 9.12, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07202", | |
| "issue_size": null, | |
| "last_traded_on": 1461196800, | |
| "maturity_date": 1640908800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2170, | |
| "ttm": "1y 9d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1285, | |
| "current_ytm": 9.12, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE774D08MF5", | |
| "issue_size": 2500000, | |
| "last_traded_on": 1566432000, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 37495, | |
| "current_ytm": 9.12, | |
| "display_name": "Icici Limited ", | |
| "face_value": 50000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11085", | |
| "issue_size": null, | |
| "last_traded_on": 1537315200, | |
| "maturity_date": 1641340800, | |
| "rated_as_on": 1570406400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7726, | |
| "ttm": "1y 14d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 999833, | |
| "current_ytm": 9.11, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07186", | |
| "issue_size": null, | |
| "last_traded_on": 1529971200, | |
| "maturity_date": 1625011200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1986, | |
| "ttm": " 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1000000, | |
| "current_ytm": 9.1, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07251", | |
| "issue_size": null, | |
| "last_traded_on": 1462924800, | |
| "maturity_date": 1680220800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2625, | |
| "ttm": "2y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1000000, | |
| "current_ytm": 9.1, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07210", | |
| "issue_size": null, | |
| "last_traded_on": 1462752000, | |
| "maturity_date": 1648684800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2260, | |
| "ttm": "1y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1000000, | |
| "current_ytm": 9.1, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07293", | |
| "issue_size": null, | |
| "last_traded_on": 1462752000, | |
| "maturity_date": 1711670400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2989, | |
| "ttm": "3y 3m 7d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 27867, | |
| "current_ytm": 9.1, | |
| "display_name": "Icici Limited", | |
| "face_value": 40000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11AI3", | |
| "issue_size": null, | |
| "last_traded_on": 1537315200, | |
| "maturity_date": 1668211200, | |
| "rated_as_on": 1570406400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7653, | |
| "ttm": "1y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 990256, | |
| "current_ytm": 9.1, | |
| "display_name": "Aditya Birla Housing Finance Limited 8.94%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R08076", | |
| "issue_size": null, | |
| "last_traded_on": 1572566400, | |
| "maturity_date": 1875571200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 5m 17d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1011236, | |
| "current_ytm": 9.1, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07608", | |
| "issue_size": null, | |
| "last_traded_on": 1523491200, | |
| "maturity_date": 1956441600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5822, | |
| "ttm": "11y 9d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 28601, | |
| "current_ytm": 9.1, | |
| "display_name": "Icici Limited ", | |
| "face_value": 40000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11846", | |
| "issue_size": null, | |
| "last_traded_on": 1537315200, | |
| "maturity_date": 1658793600, | |
| "rated_as_on": 1570406400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7734, | |
| "ttm": "1y 7m 4d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.266884, | |
| "current_price": 962754, | |
| "current_ytm": 9.09, | |
| "display_name": "Bhopal Dhule Transmission Company Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774N07079", | |
| "issue_size": null, | |
| "last_traded_on": 1528675200, | |
| "maturity_date": 1640908800, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1676, | |
| "ttm": "1y 9d" | |
| }, | |
| { | |
| "coupon": 9.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1004700, | |
| "current_ytm": 9.09, | |
| "display_name": "Lic Housing Finance Limited 9.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DG6", | |
| "issue_size": null, | |
| "last_traded_on": 1540857600, | |
| "maturity_date": 1670889600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 21d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 995977, | |
| "current_ytm": 9.09, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07106", | |
| "issue_size": null, | |
| "last_traded_on": 1530576000, | |
| "maturity_date": 1711843200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2909, | |
| "ttm": "3y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1015000, | |
| "current_ytm": 9.08, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07AX5", | |
| "issue_size": null, | |
| "last_traded_on": 1594166400, | |
| "maturity_date": 1893369600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4392, | |
| "ttm": "9y 9d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 999300, | |
| "current_ytm": 9.08, | |
| "display_name": "Idfc Infrastructure Finance Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07335", | |
| "issue_size": null, | |
| "last_traded_on": 1567728000, | |
| "maturity_date": 1645488000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1139, | |
| "ttm": "1y 2m" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1014700, | |
| "current_ytm": 9.07, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07640", | |
| "issue_size": null, | |
| "last_traded_on": 1520899200, | |
| "maturity_date": 1988064000, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 6188, | |
| "ttm": "12y 9d" | |
| }, | |
| { | |
| "coupon": 8.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 991797, | |
| "current_ytm": 9.07, | |
| "display_name": "Tata Capital Housing Finance Limited 8.92%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L08262", | |
| "issue_size": null, | |
| "last_traded_on": 1545091200, | |
| "maturity_date": 1785801600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 13d" | |
| }, | |
| { | |
| "coupon": 10, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1096000, | |
| "current_ytm": 9.05, | |
| "display_name": "National Highways Authority Of India Sr-Ii 8.4535 Bd 02Ag48 Fvrs10Lac L.T.D 10.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07GL9", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 2479939200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 10958, | |
| "ttm": "27y 7m 11d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99910, | |
| "current_ytm": 9.02, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07688", | |
| "issue_size": null, | |
| "last_traded_on": 1537488000, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2470, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 96300, | |
| "current_ytm": 9.02, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07217", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1806364800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3786, | |
| "ttm": "6y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99910, | |
| "current_ytm": 9.02, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07670", | |
| "issue_size": null, | |
| "last_traded_on": 1537488000, | |
| "maturity_date": 1711756800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2286, | |
| "ttm": "3y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1014000, | |
| "current_ytm": 9.02, | |
| "display_name": "Tata Capital Financial Services Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08037", | |
| "issue_size": null, | |
| "last_traded_on": 1558483200, | |
| "maturity_date": 1736208000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 16d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1054.01, | |
| "current_ytm": -9.02, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.15%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07016", | |
| "issue_size": 200852000, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1616889600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 991158, | |
| "current_ytm": 9, | |
| "display_name": "Bajaj Finance Limited 8.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07LR4", | |
| "issue_size": null, | |
| "last_traded_on": 1585180800, | |
| "maturity_date": 1628553600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 7m 19d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 1005601, | |
| "current_ytm": 9, | |
| "display_name": "State Bank Of India 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A09221", | |
| "issue_size": null, | |
| "last_traded_on": 1573084800, | |
| "maturity_date": null, | |
| "rated_as_on": 1563235200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1001390, | |
| "current_ytm": 9, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07178", | |
| "issue_size": null, | |
| "last_traded_on": 1566172800, | |
| "maturity_date": 1617148800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1895, | |
| "ttm": " 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1007180, | |
| "current_ytm": 9, | |
| "display_name": "Kudgi Transmission Limited 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07132", | |
| "issue_size": null, | |
| "last_traded_on": 1585180800, | |
| "maturity_date": 1840233600, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4043, | |
| "ttm": "7y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.06, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 940500, | |
| "current_ytm": 9, | |
| "display_name": "Bajaj Finance Limited 8.06%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08870", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1885766400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "8y 9m 12d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1009349, | |
| "current_ytm": 9, | |
| "display_name": "Kudgi Transmission Limited 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07173", | |
| "issue_size": null, | |
| "last_traded_on": 1585180800, | |
| "maturity_date": 1966464000, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5504, | |
| "ttm": "11y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1006500, | |
| "current_ytm": 8.99, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07217", | |
| "issue_size": null, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 1767139200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3800, | |
| "ttm": "5y 9d" | |
| }, | |
| { | |
| "coupon": 10.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1058200, | |
| "current_ytm": 8.98, | |
| "display_name": "Tata Capital Housing Finance Limited 10.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L08106", | |
| "issue_size": null, | |
| "last_traded_on": 1467331200, | |
| "maturity_date": 1661126400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1023000, | |
| "current_ytm": 8.9636, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07290", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1893369600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5261, | |
| "ttm": "9y 9d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1016700, | |
| "current_ytm": 8.96, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07384", | |
| "issue_size": null, | |
| "last_traded_on": 1519084800, | |
| "maturity_date": 1782777600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3812, | |
| "ttm": "5y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1004646, | |
| "current_ytm": 8.96, | |
| "display_name": "Power Finance Corporation Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DI3", | |
| "issue_size": null, | |
| "last_traded_on": 1537920000, | |
| "maturity_date": 1765756800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 11m 23d" | |
| }, | |
| { | |
| "coupon": 10.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1064137, | |
| "current_ytm": 8.96, | |
| "display_name": "Fullerton India Credit Company Ltd 10.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07282", | |
| "issue_size": null, | |
| "last_traded_on": 1524614400, | |
| "maturity_date": 1682640000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "2y 4m 6d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1010388, | |
| "current_ytm": 8.95, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07175", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1703980800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3069, | |
| "ttm": "3y 9d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 98816.8, | |
| "current_ytm": 8.95, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07092", | |
| "issue_size": null, | |
| "last_traded_on": 1554768000, | |
| "maturity_date": 1617062400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1595, | |
| "ttm": " 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1022400, | |
| "current_ytm": 8.94, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07525", | |
| "issue_size": null, | |
| "last_traded_on": 1514851200, | |
| "maturity_date": 1893369600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5092, | |
| "ttm": "9y 9d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 99245.7, | |
| "current_ytm": 8.92, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07468", | |
| "issue_size": null, | |
| "last_traded_on": 1537920000, | |
| "maturity_date": 1770768000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "5y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 997669, | |
| "current_ytm": 8.92, | |
| "display_name": "L&T Housing Finance Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476M07BM9", | |
| "issue_size": null, | |
| "last_traded_on": 1553040000, | |
| "maturity_date": 1624406400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1083, | |
| "ttm": " 6m 1d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 200806.2, | |
| "current_ytm": 8.92, | |
| "display_name": "Ntpc Limited 9.0%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07HB0", | |
| "issue_size": null, | |
| "last_traded_on": 1538697600, | |
| "maturity_date": 1769299200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "5y 1m 3d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1003044, | |
| "current_ytm": 8.91, | |
| "display_name": "India Infradebt Limited 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07463", | |
| "issue_size": null, | |
| "last_traded_on": 1576540800, | |
| "maturity_date": 1713830400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 4m 1d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1022000, | |
| "current_ytm": 8.91, | |
| "display_name": "Fullerton India Credit Company Ltd 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08645", | |
| "issue_size": null, | |
| "last_traded_on": 1476835200, | |
| "maturity_date": 1665619200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 9m 21d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1025600, | |
| "current_ytm": 8.91, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07566", | |
| "issue_size": null, | |
| "last_traded_on": 1515542400, | |
| "maturity_date": 1924905600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5457, | |
| "ttm": "10y 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1026148, | |
| "current_ytm": 8.91, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IX2", | |
| "issue_size": null, | |
| "last_traded_on": 1538697600, | |
| "maturity_date": 1819497600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5844, | |
| "ttm": "6y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8.96, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 1002569, | |
| "current_ytm": 8.9, | |
| "display_name": "State Bank Of India 8.96%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A09072", | |
| "issue_size": null, | |
| "last_traded_on": 1469750400, | |
| "maturity_date": 1631404800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 8m 21d" | |
| }, | |
| { | |
| "coupon": 11.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1092700, | |
| "current_ytm": 8.88, | |
| "display_name": "Fullerton India Credit Company Ltd 11.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08520", | |
| "issue_size": null, | |
| "last_traded_on": 1516233600, | |
| "maturity_date": 1663113600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m 23d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 201165, | |
| "current_ytm": 8.88, | |
| "display_name": "Ntpc Limited 9.0%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07HA2", | |
| "issue_size": null, | |
| "last_traded_on": 1536537600, | |
| "maturity_date": 1737763200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "4y 1m 3d" | |
| }, | |
| { | |
| "coupon": 7.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 958756, | |
| "current_ytm": 8.88, | |
| "display_name": "India Infra Fin Company Ltd 7.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H09061", | |
| "issue_size": null, | |
| "last_traded_on": 1540512000, | |
| "maturity_date": 1714262400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 4m 6d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 968776, | |
| "current_ytm": 8.88, | |
| "display_name": "Konkan Railway Corporation Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE139F07097", | |
| "issue_size": null, | |
| "last_traded_on": 1539043200, | |
| "maturity_date": 1777420800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 7d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1012833, | |
| "current_ytm": 8.8733, | |
| "display_name": "Kudgi Transmission Limited 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07165", | |
| "issue_size": null, | |
| "last_traded_on": 1591142400, | |
| "maturity_date": 1934841600, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5138, | |
| "ttm": "10y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 988096, | |
| "current_ytm": 8.87, | |
| "display_name": "Power Finance Corporation Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08BP2", | |
| "issue_size": null, | |
| "last_traded_on": 1539129600, | |
| "maturity_date": 1722988800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 7m 16d" | |
| }, | |
| { | |
| "coupon": 8.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 982832, | |
| "current_ytm": 8.87, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07293", | |
| "issue_size": null, | |
| "last_traded_on": 1570060800, | |
| "maturity_date": 1778803200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2921, | |
| "ttm": "5y 4m 23d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1011034, | |
| "current_ytm": 8.87, | |
| "display_name": "Aditya Birla Housing Finance Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R08019", | |
| "issue_size": null, | |
| "last_traded_on": 1579219200, | |
| "maturity_date": 1783036800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "5y 6m 11d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1015600, | |
| "current_ytm": 8.86, | |
| "display_name": "Lic Housing Finance Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NH3", | |
| "issue_size": null, | |
| "last_traded_on": 1542326400, | |
| "maturity_date": 1853366400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3623, | |
| "ttm": "7y 9m 2d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 98035.7, | |
| "current_ytm": 8.86, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07864", | |
| "issue_size": null, | |
| "last_traded_on": 1537747200, | |
| "maturity_date": 1783987200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "5y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1000000, | |
| "current_ytm": 8.85, | |
| "display_name": "Power Finance Corporation Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08925", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1622419200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 981600, | |
| "current_ytm": 8.85, | |
| "display_name": "Swarna Tollway Private Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE963H07047", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1814313600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3438, | |
| "ttm": "6y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1021500, | |
| "current_ytm": 8.85, | |
| "display_name": "Tata Capital Financial Services Limited 9.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07DT7", | |
| "issue_size": null, | |
| "last_traded_on": 1558569600, | |
| "maturity_date": 1732060800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 10m 29d" | |
| }, | |
| { | |
| "coupon": 8.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1002000, | |
| "current_ytm": 8.84, | |
| "display_name": "Tata Capital Housing Finance Limited 8.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07DU9", | |
| "issue_size": null, | |
| "last_traded_on": 1443398400, | |
| "maturity_date": 1756425600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1017300, | |
| "current_ytm": 8.84, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BP9", | |
| "issue_size": null, | |
| "last_traded_on": 1596153600, | |
| "maturity_date": 2035238400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 6034, | |
| "ttm": "13y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1030000, | |
| "current_ytm": 8.84, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07509", | |
| "issue_size": null, | |
| "last_traded_on": 1494460800, | |
| "maturity_date": 1877385600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4907, | |
| "ttm": "8y 6m 7d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 9791960, | |
| "current_ytm": 8.84, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.44%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07PB3", | |
| "issue_size": null, | |
| "last_traded_on": 1551312000, | |
| "maturity_date": 1780272000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 10d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1025226, | |
| "current_ytm": 8.84, | |
| "display_name": "Aditya Birla Finance Limited 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DK2", | |
| "issue_size": null, | |
| "last_traded_on": 1565913600, | |
| "maturity_date": 1736380800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 18d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1007600, | |
| "current_ytm": 8.83, | |
| "display_name": "Tata Capital Financial Services Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08326", | |
| "issue_size": null, | |
| "last_traded_on": 1565222400, | |
| "maturity_date": 1870992000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 25d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 981800, | |
| "current_ytm": 8.83, | |
| "display_name": "Aditya Birla Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DY3", | |
| "issue_size": null, | |
| "last_traded_on": 1561420800, | |
| "maturity_date": 1810598400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 4m 26d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1033333, | |
| "current_ytm": 8.8233, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07207", | |
| "issue_size": null, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 2061072000, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6599, | |
| "ttm": "14y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1033333, | |
| "current_ytm": 8.8233, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07231", | |
| "issue_size": null, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 2155766400, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 7695, | |
| "ttm": "17y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 999200, | |
| "current_ytm": 8.82, | |
| "display_name": "State Bank Of India 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A09056", | |
| "issue_size": null, | |
| "last_traded_on": 1454889600, | |
| "maturity_date": 1622851200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 5m 14d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1018200, | |
| "current_ytm": 8.81, | |
| "display_name": "Aditya Birla Housing Finance Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R08035", | |
| "issue_size": null, | |
| "last_traded_on": 1475193600, | |
| "maturity_date": 1783900800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 21d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.3387556, | |
| "current_price": 1021832, | |
| "current_ytm": 8.81, | |
| "display_name": "L&T Fincorp Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE759E08044", | |
| "issue_size": null, | |
| "last_traded_on": 1587513600, | |
| "maturity_date": 1774224000, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1005200, | |
| "current_ytm": 8.81, | |
| "display_name": "Power Finance Corporation Ltd 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FO6", | |
| "issue_size": null, | |
| "last_traded_on": 1552608000, | |
| "maturity_date": 1836950400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 2m 25d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1016125, | |
| "current_ytm": 8.8075, | |
| "display_name": "Kudgi Transmission Limited 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07157", | |
| "issue_size": null, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 1903305600, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4773, | |
| "ttm": "9y 4m 3d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.10161, | |
| "current_price": 1169600, | |
| "current_ytm": 8.8, | |
| "display_name": "Bajaj Housing Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE377Y07037", | |
| "issue_size": null, | |
| "last_traded_on": 1584662400, | |
| "maturity_date": 1620086400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1168, | |
| "ttm": " 4m 12d" | |
| }, | |
| { | |
| "coupon": 9.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1056900, | |
| "current_ytm": 8.8, | |
| "display_name": "Sundaram Finance Limited 9.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BQ2", | |
| "issue_size": null, | |
| "last_traded_on": 1471996800, | |
| "maturity_date": 1731196800, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 10m 19d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 995800, | |
| "current_ytm": 8.8, | |
| "display_name": "Power Finance Corporation Ltd 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JT7", | |
| "issue_size": null, | |
| "last_traded_on": 1559088000, | |
| "maturity_date": 2024179200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 2m" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000, | |
| "current_ytm": 8.8, | |
| "display_name": "Tata Capital Financial Services Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KE4", | |
| "issue_size": 768789000, | |
| "last_traded_on": 1575331200, | |
| "maturity_date": 1695772800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 9m 5d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 986800, | |
| "current_ytm": 8.79, | |
| "display_name": "Swarna Tollway Private Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE963H07039", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1774915200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2982, | |
| "ttm": "5y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 98020, | |
| "current_ytm": 8.79, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07898", | |
| "issue_size": null, | |
| "last_traded_on": 1537747200, | |
| "maturity_date": 1878681600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "8y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 989550, | |
| "current_ytm": 8.79, | |
| "display_name": "Export Import Bank Of India Sr-Q-01 8.5 Bd 26Ap23 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CK4", | |
| "issue_size": null, | |
| "last_traded_on": 1540425600, | |
| "maturity_date": 1682467200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 4d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1040000, | |
| "current_ytm": 8.78, | |
| "display_name": "Hdfc Bank Limited 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE040A08310", | |
| "issue_size": null, | |
| "last_traded_on": 1537315200, | |
| "maturity_date": 1818115200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 7m 22d" | |
| }, | |
| { | |
| "coupon": 9.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1033400, | |
| "current_ytm": 8.78, | |
| "display_name": "Aditya Birla Finance Limited 9.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DI6", | |
| "issue_size": null, | |
| "last_traded_on": 1565049600, | |
| "maturity_date": 1685664000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "2y 5m 11d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 97990, | |
| "current_ytm": 8.78, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07906", | |
| "issue_size": null, | |
| "last_traded_on": 1537833600, | |
| "maturity_date": 1910217600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 6m 22d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1013545, | |
| "current_ytm": 8.78, | |
| "display_name": "Export Import Bank Of India 9.25 Bd 18Ap22 Fvrs10Lac L.T.D 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08AV5", | |
| "issue_size": null, | |
| "last_traded_on": 1541030400, | |
| "maturity_date": 1650240000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 3m 27d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1293302.5, | |
| "current_ytm": 8.77, | |
| "display_name": "Power Grid Corporation Of India Ltd 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07EH4", | |
| "issue_size": null, | |
| "last_traded_on": 1359590400, | |
| "maturity_date": 1678147200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "2y 2m 13d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1008890, | |
| "current_ytm": 8.77, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07167", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1688083200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2885, | |
| "ttm": "2y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100075.7, | |
| "current_ytm": 8.77, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07464", | |
| "issue_size": null, | |
| "last_traded_on": 1524700800, | |
| "maturity_date": 1774828800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3421, | |
| "ttm": "5y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100086, | |
| "current_ytm": 8.77, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07480", | |
| "issue_size": null, | |
| "last_traded_on": 1524700800, | |
| "maturity_date": 1806364800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3786, | |
| "ttm": "6y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100053.3, | |
| "current_ytm": 8.77, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07407", | |
| "issue_size": null, | |
| "last_traded_on": 1524700800, | |
| "maturity_date": 1680134400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2325, | |
| "ttm": "2y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037545, | |
| "current_ytm": 8.76, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07541", | |
| "issue_size": null, | |
| "last_traded_on": 1483056000, | |
| "maturity_date": 1908835200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5271, | |
| "ttm": "9y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1008800, | |
| "current_ytm": 8.76, | |
| "display_name": "Indian Bank 8.9 Bd 30Ot28 Fvrs10Lac L.T.D 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE562A08024", | |
| "issue_size": null, | |
| "last_traded_on": 1543449600, | |
| "maturity_date": 1856476800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1030400, | |
| "current_ytm": 8.75, | |
| "display_name": "Fullerton India Credit Company Ltd 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08744", | |
| "issue_size": null, | |
| "last_traded_on": 1589932800, | |
| "maturity_date": 1871856000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3906, | |
| "ttm": "8y 4m 4d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1162000, | |
| "current_ytm": 8.75, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE774D07RX9", | |
| "issue_size": null, | |
| "last_traded_on": 1584662400, | |
| "maturity_date": 1622073600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1163, | |
| "ttm": " 5m 5d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020800, | |
| "current_ytm": 8.75, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BI4", | |
| "issue_size": null, | |
| "last_traded_on": 1596758400, | |
| "maturity_date": 1980115200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5396, | |
| "ttm": "11y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1039929, | |
| "current_ytm": 8.75, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BE3", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1948492800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5030, | |
| "ttm": "10y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1030500, | |
| "current_ytm": 8.75, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07258", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1830211200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4530, | |
| "ttm": "7y 9d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 941485, | |
| "current_ytm": 8.75, | |
| "display_name": "Lic Housing Finance Limited 7.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MQ6", | |
| "issue_size": null, | |
| "last_traded_on": 1557187200, | |
| "maturity_date": 1826928000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 11m 1d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1038800, | |
| "current_ytm": 8.75, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07582", | |
| "issue_size": null, | |
| "last_traded_on": 1509408000, | |
| "maturity_date": 1940544000, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5638, | |
| "ttm": "10y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037683, | |
| "current_ytm": 8.75, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07517", | |
| "issue_size": null, | |
| "last_traded_on": 1483056000, | |
| "maturity_date": 1885248000, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4998, | |
| "ttm": "8y 9m 6d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1016456, | |
| "current_ytm": 8.75, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07122", | |
| "issue_size": null, | |
| "last_traded_on": 1464566400, | |
| "maturity_date": 1774915200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3639, | |
| "ttm": "5y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1017511, | |
| "current_ytm": 8.75, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07130", | |
| "issue_size": null, | |
| "last_traded_on": 1465344000, | |
| "maturity_date": 1806451200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4004, | |
| "ttm": "6y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1009500, | |
| "current_ytm": 8.75, | |
| "display_name": "L&T Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08087", | |
| "issue_size": null, | |
| "last_traded_on": 1573689600, | |
| "maturity_date": 1883952000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 8m 22d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1035358, | |
| "current_ytm": 8.74, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07II3", | |
| "issue_size": null, | |
| "last_traded_on": 1455580800, | |
| "maturity_date": 1652054400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 4m 17d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037683, | |
| "current_ytm": 8.72, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07475", | |
| "issue_size": null, | |
| "last_traded_on": 1483056000, | |
| "maturity_date": 1853798400, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4634, | |
| "ttm": "7y 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1002097, | |
| "current_ytm": 8.72, | |
| "display_name": "Aditya Birla Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07CP5", | |
| "issue_size": null, | |
| "last_traded_on": 1574812800, | |
| "maturity_date": 1615420800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 2m 17d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 983273, | |
| "current_ytm": 8.72, | |
| "display_name": "Icici Bank Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08TT8", | |
| "issue_size": null, | |
| "last_traded_on": 1549324800, | |
| "maturity_date": 1778630400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 21d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 985555, | |
| "current_ytm": 8.71, | |
| "display_name": "Sundaram Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BW0", | |
| "issue_size": null, | |
| "last_traded_on": 1565740800, | |
| "maturity_date": 1812326400, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 16d" | |
| }, | |
| { | |
| "coupon": 9.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1034539, | |
| "current_ytm": 8.71, | |
| "display_name": "Lic Housing Finance Limited 9.47%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07FO5", | |
| "issue_size": null, | |
| "last_traded_on": 1532649600, | |
| "maturity_date": 1724371200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 8m 1d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1019738, | |
| "current_ytm": 8.7, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LF7", | |
| "issue_size": null, | |
| "last_traded_on": 1592352000, | |
| "maturity_date": 1684886400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m 2d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.243419, | |
| "current_price": 1009800, | |
| "current_ytm": 8.7, | |
| "display_name": "India Grid Trust E 8.85 Loa 02Nv22 Fvrs10Lac L.T.D 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE219X07066", | |
| "issue_size": null, | |
| "last_traded_on": 1583971200, | |
| "maturity_date": 1667347200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": "1y 10m 11d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100550, | |
| "current_ytm": 8.7, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07506", | |
| "issue_size": null, | |
| "last_traded_on": 1526601600, | |
| "maturity_date": 1837987200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4152, | |
| "ttm": "7y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 975500, | |
| "current_ytm": 8.7, | |
| "display_name": "India Infra Fin Company Ltd 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H09053", | |
| "issue_size": null, | |
| "last_traded_on": 1547596800, | |
| "maturity_date": 1712534400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 3m 17d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037683, | |
| "current_ytm": 8.7, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07434", | |
| "issue_size": null, | |
| "last_traded_on": 1483056000, | |
| "maturity_date": 1822262400, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4269, | |
| "ttm": "6y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1017267, | |
| "current_ytm": 8.7, | |
| "display_name": "Nrss Xxxi (B) Transmission Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE163R08CP1", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 2185142400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7862, | |
| "ttm": "18y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1042400, | |
| "current_ytm": 8.7, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BB9", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1924905600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4757, | |
| "ttm": "10y 9d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1023160, | |
| "current_ytm": 8.7, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07209", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1751241600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3616, | |
| "ttm": "4y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1017267, | |
| "current_ytm": 8.7, | |
| "display_name": "Nrss Xxxi (B) Transmission Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE163R08CO4", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 2177366400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7772, | |
| "ttm": "18y 9d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1017267, | |
| "current_ytm": 8.7, | |
| "display_name": "Nrss Xxxi (B) Transmission Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE163R08CQ9", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 2193004800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7953, | |
| "ttm": "18y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1008253, | |
| "current_ytm": 8.69, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07194", | |
| "issue_size": null, | |
| "last_traded_on": 1559520000, | |
| "maturity_date": 1632960000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2078, | |
| "ttm": " 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100550, | |
| "current_ytm": 8.69, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07498", | |
| "issue_size": null, | |
| "last_traded_on": 1526601600, | |
| "maturity_date": 1822262400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3970, | |
| "ttm": "6y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000140, | |
| "current_ytm": 8.69, | |
| "display_name": "Tata Capital Financial Services Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07JY4", | |
| "issue_size": null, | |
| "last_traded_on": 1557878400, | |
| "maturity_date": 1622160000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": " 5m 6d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1000300, | |
| "current_ytm": 8.69, | |
| "display_name": "Lic Housing Finance Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NR2", | |
| "issue_size": null, | |
| "last_traded_on": 1548115200, | |
| "maturity_date": 1766534400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "5y 2d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037545, | |
| "current_ytm": 8.69, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07426", | |
| "issue_size": null, | |
| "last_traded_on": 1483056000, | |
| "maturity_date": 1814313600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4177, | |
| "ttm": "6y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1022085, | |
| "current_ytm": 8.69, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07343", | |
| "issue_size": null, | |
| "last_traded_on": 1510272000, | |
| "maturity_date": 1751241600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3447, | |
| "ttm": "4y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100500, | |
| "current_ytm": 8.69, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07472", | |
| "issue_size": null, | |
| "last_traded_on": 1526601600, | |
| "maturity_date": 1790726400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3605, | |
| "ttm": "5y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 996917, | |
| "current_ytm": 8.68, | |
| "display_name": "Idfc Infra Debt Fund Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07046", | |
| "issue_size": null, | |
| "last_traded_on": 1520553600, | |
| "maturity_date": 1610064000, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1857, | |
| "ttm": " 17d" | |
| }, | |
| { | |
| "coupon": 8.08, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 983696, | |
| "current_ytm": 8.68, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.08%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07244", | |
| "issue_size": null, | |
| "last_traded_on": 1575331200, | |
| "maturity_date": 1676332800, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1884, | |
| "ttm": "2y 1m 23d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1026100, | |
| "current_ytm": 8.67, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07163", | |
| "issue_size": null, | |
| "last_traded_on": 1468800000, | |
| "maturity_date": 1901145600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5100, | |
| "ttm": "9y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1005200, | |
| "current_ytm": 8.67, | |
| "display_name": "Tata Cleantech Capital Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE857Q07232", | |
| "issue_size": null, | |
| "last_traded_on": 1571356800, | |
| "maturity_date": 1878595200, | |
| "rated_as_on": 1563580800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 6m 21d" | |
| }, | |
| { | |
| "coupon": 8.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 976764, | |
| "current_ytm": 8.67, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Ltif C1 8.39 Ncd 24Ag33 Fvrs10Lac L.T.D 8.39%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AN7", | |
| "issue_size": null, | |
| "last_traded_on": 1537920000, | |
| "maturity_date": 2008454400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 8m 2d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.323719, | |
| "current_price": 990500, | |
| "current_ytm": 8.67, | |
| "display_name": "Axis Bank Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE238A08393", | |
| "issue_size": null, | |
| "last_traded_on": 1527120000, | |
| "maturity_date": 1779840000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1006600, | |
| "current_ytm": 8.65, | |
| "display_name": "Tata Capital Financial Services Limited 8.82%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LB8", | |
| "issue_size": null, | |
| "last_traded_on": 1561593600, | |
| "maturity_date": 1716768000, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 993374, | |
| "current_ytm": 8.65, | |
| "display_name": "Lic Housing Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JO7", | |
| "issue_size": null, | |
| "last_traded_on": 1534723200, | |
| "maturity_date": 1686268800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2555, | |
| "ttm": "2y 5m 18d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 102000, | |
| "current_ytm": 8.65, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07761", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1853884800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3931, | |
| "ttm": "7y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101420, | |
| "current_ytm": 8.65, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07704", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1759190400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2835, | |
| "ttm": "4y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101730, | |
| "current_ytm": 8.65, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07738", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1806364800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3381, | |
| "ttm": "6y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101630, | |
| "current_ytm": 8.65, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07720", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1790726400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3200, | |
| "ttm": "5y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020700, | |
| "current_ytm": 8.65, | |
| "display_name": "Nrss Xxxi (B) Transmission Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE163R08BG2", | |
| "issue_size": null, | |
| "last_traded_on": 1588032000, | |
| "maturity_date": 1909008000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4666, | |
| "ttm": "9y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 995000, | |
| "current_ytm": 8.65, | |
| "display_name": "Swarna Tollway Private Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE963H07021", | |
| "issue_size": null, | |
| "last_traded_on": 1589241600, | |
| "maturity_date": 1712016000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2254, | |
| "ttm": "3y 3m 11d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 102080, | |
| "current_ytm": 8.65, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 9.0%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07779", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1869523200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4112, | |
| "ttm": "8y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100530, | |
| "current_ytm": 8.63, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07431", | |
| "issue_size": null, | |
| "last_traded_on": 1597104000, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2875, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1022181, | |
| "current_ytm": 8.63, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07114", | |
| "issue_size": null, | |
| "last_traded_on": 1469577600, | |
| "maturity_date": 1743379200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3274, | |
| "ttm": "4y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1043800, | |
| "current_ytm": 8.63, | |
| "display_name": "Dena Bank 9.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE077A09104", | |
| "issue_size": null, | |
| "last_traded_on": 1439424000, | |
| "maturity_date": 1813881600, | |
| "rated_as_on": 1577145600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 6m 3d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101302.9, | |
| "current_ytm": 8.63, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07385", | |
| "issue_size": null, | |
| "last_traded_on": 1535500800, | |
| "maturity_date": 1802304000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "6y 1m 20d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1042011, | |
| "current_ytm": 8.62, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IW4", | |
| "issue_size": null, | |
| "last_traded_on": 1526601600, | |
| "maturity_date": 1787961600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1038223, | |
| "current_ytm": 8.62, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IV6", | |
| "issue_size": null, | |
| "last_traded_on": 1526601600, | |
| "maturity_date": 1756425600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "4y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1032841, | |
| "current_ytm": 8.62, | |
| "display_name": "Tata Capital Financial Services Limited 9.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07CS1", | |
| "issue_size": null, | |
| "last_traded_on": 1562630400, | |
| "maturity_date": 1662336000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m 14d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1070000, | |
| "current_ytm": 8.62, | |
| "display_name": "Sundaram Finance Limited 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BZ3", | |
| "issue_size": null, | |
| "last_traded_on": 1568764800, | |
| "maturity_date": 1858636800, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 11m 2d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.243419, | |
| "current_price": 1006400, | |
| "current_ytm": 8.62, | |
| "display_name": "India Grid Trust Sr One 8.6 Loa 31Ag28 Fvrs10Lac L.T.D 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE219X07017", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1851292800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 8m 9d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1023906, | |
| "current_ytm": 8.61, | |
| "display_name": "Icici Bank Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE090A08TN1", | |
| "issue_size": null, | |
| "last_traded_on": 1544659200, | |
| "maturity_date": 1722902400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 7m 15d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101000, | |
| "current_ytm": 8.61, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07484", | |
| "issue_size": null, | |
| "last_traded_on": 1552521600, | |
| "maturity_date": 1833840000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "7y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1269566.25, | |
| "current_ytm": 8.6, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.93%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07BC1", | |
| "issue_size": null, | |
| "last_traded_on": 1433376000, | |
| "maturity_date": 1630972800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 8m 16d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1013339, | |
| "current_ytm": 8.59, | |
| "display_name": "Lic Housing Finance Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DA9", | |
| "issue_size": null, | |
| "last_traded_on": 1557100800, | |
| "maturity_date": 1666656000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 10m 3d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1002700, | |
| "current_ytm": 8.58, | |
| "display_name": "Tata Capital Financial Services Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LE2", | |
| "issue_size": null, | |
| "last_traded_on": 1564531200, | |
| "maturity_date": 1718841600, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 29d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101420, | |
| "current_ytm": 8.58, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07514", | |
| "issue_size": null, | |
| "last_traded_on": 1514937600, | |
| "maturity_date": 1853884800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4336, | |
| "ttm": "7y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 995400, | |
| "current_ytm": 8.58, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-2-E 8.52 Bd 04Mr33 Fvrs10Lac L.T.D 8.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AC0", | |
| "issue_size": null, | |
| "last_traded_on": 1534982400, | |
| "maturity_date": 1993507200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5477, | |
| "ttm": "12y 2m 10d" | |
| }, | |
| { | |
| "coupon": 9.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1294910, | |
| "current_ytm": 8.58, | |
| "display_name": "Power Grid Corporation Of India Ltd 9.33%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FD0", | |
| "issue_size": null, | |
| "last_traded_on": 1435795200, | |
| "maturity_date": 1639526400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": " 11m 23d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99530, | |
| "current_ytm": 8.58, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07118", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1648598400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1960, | |
| "ttm": "1y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037878, | |
| "current_ytm": 8.58, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07316", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1924905600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5626, | |
| "ttm": "10y 9d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1018913, | |
| "current_ytm": 8.58, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07236", | |
| "issue_size": null, | |
| "last_traded_on": 1520380800, | |
| "maturity_date": 1664496000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2443, | |
| "ttm": "1y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1007700, | |
| "current_ytm": 8.57, | |
| "display_name": "Tata Capital Housing Finance Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07DW5", | |
| "issue_size": null, | |
| "last_traded_on": 1493769600, | |
| "maturity_date": 1759881600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 16d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101540, | |
| "current_ytm": 8.57, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07548", | |
| "issue_size": null, | |
| "last_traded_on": 1514937600, | |
| "maturity_date": 1901059200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4882, | |
| "ttm": "9y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2175, | |
| "current_ytm": 8.56, | |
| "display_name": "L&T Infrastructure Finance Company Ltd 8.3%", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE691I07232", | |
| "issue_size": 3093073000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1616371200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": " 3m" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1032200, | |
| "current_ytm": 8.56, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07266", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1845936000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4712, | |
| "ttm": "7y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1009200, | |
| "current_ytm": 8.56, | |
| "display_name": "Aditya Birla Finance Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07GU6", | |
| "issue_size": null, | |
| "last_traded_on": 1563494400, | |
| "maturity_date": 1877817600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 12d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1034300, | |
| "current_ytm": 8.56, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07274", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1861833600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4896, | |
| "ttm": "8y 9d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 205433.4, | |
| "current_ytm": 8.54, | |
| "display_name": "Ntpc Limited 9.0%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07HC8", | |
| "issue_size": null, | |
| "last_traded_on": 1529971200, | |
| "maturity_date": 1800835200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "6y 1m 3d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 977557, | |
| "current_ytm": 8.54, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NS2", | |
| "issue_size": null, | |
| "last_traded_on": 1532995200, | |
| "maturity_date": 1777075200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 3d" | |
| }, | |
| { | |
| "coupon": 10.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1118500, | |
| "current_ytm": 8.54, | |
| "display_name": "Family Credit Limited 10.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08012", | |
| "issue_size": null, | |
| "last_traded_on": 1493251200, | |
| "maturity_date": 1709078400, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 2m 6d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 99720, | |
| "current_ytm": 8.54, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07880", | |
| "issue_size": null, | |
| "last_traded_on": 1532304000, | |
| "maturity_date": 1847145600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "7y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1001580, | |
| "current_ytm": 8.54, | |
| "display_name": "Lic Housing Finance Limited 8.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IT8", | |
| "issue_size": null, | |
| "last_traded_on": 1548115200, | |
| "maturity_date": 1707350400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "3y 1m 17d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2436690, | |
| "current_ytm": 8.5372, | |
| "display_name": "L&T Infra Debt Fund Limited 8.2%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07738", | |
| "issue_size": null, | |
| "last_traded_on": 1589241600, | |
| "maturity_date": 1969574400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "11y 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101370, | |
| "current_ytm": 8.53, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07456", | |
| "issue_size": null, | |
| "last_traded_on": 1515369600, | |
| "maturity_date": 1759190400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3240, | |
| "ttm": "4y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100077.3, | |
| "current_ytm": 8.53, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07740", | |
| "issue_size": null, | |
| "last_traded_on": 1457481600, | |
| "maturity_date": 1764115200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "4y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1011641, | |
| "current_ytm": 8.53, | |
| "display_name": "Aditya Birla Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07FV6", | |
| "issue_size": null, | |
| "last_traded_on": 1569283200, | |
| "maturity_date": 1690416000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 7m 5d" | |
| }, | |
| { | |
| "coupon": 8.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1037389, | |
| "current_ytm": 8.53, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr- Ltif 3A 8.98 Bd 14Ot33 Fvrs10Lac L.T.D 8.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AQ0", | |
| "issue_size": null, | |
| "last_traded_on": 1547683200, | |
| "maturity_date": 2012860800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "12y 9m 22d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 100063.7, | |
| "current_ytm": 8.53, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07732", | |
| "issue_size": null, | |
| "last_traded_on": 1457481600, | |
| "maturity_date": 1732579200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 99845, | |
| "current_ytm": 8.53, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07872", | |
| "issue_size": null, | |
| "last_traded_on": 1533254400, | |
| "maturity_date": 1815523200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "6y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1019000, | |
| "current_ytm": 8.52, | |
| "display_name": "Aditya Birla Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DV9", | |
| "issue_size": null, | |
| "last_traded_on": 1577145600, | |
| "maturity_date": 1790640000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1020700, | |
| "current_ytm": 8.52, | |
| "display_name": "Aditya Birla Finance Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DU1", | |
| "issue_size": null, | |
| "last_traded_on": 1580083200, | |
| "maturity_date": 1785196800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 6d" | |
| }, | |
| { | |
| "coupon": 10.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1312641.25, | |
| "current_ytm": 8.52, | |
| "display_name": "Power Grid Corporation Of India Ltd 10.1%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07DV7", | |
| "issue_size": null, | |
| "last_traded_on": 1533686400, | |
| "maturity_date": 1654992000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "1y 5m 21d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1277500, | |
| "current_ytm": 8.51, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.9%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GO5", | |
| "issue_size": null, | |
| "last_traded_on": 1456790400, | |
| "maturity_date": 1708819200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "3y 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99514.1, | |
| "current_ytm": 8.51, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07126", | |
| "issue_size": null, | |
| "last_traded_on": 1589414400, | |
| "maturity_date": 1664496000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2144, | |
| "ttm": "1y 9m 8d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 987381, | |
| "current_ytm": 8.51, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KS8", | |
| "issue_size": null, | |
| "last_traded_on": 1542585600, | |
| "maturity_date": 1621468800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": " 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1002572, | |
| "current_ytm": 8.5, | |
| "display_name": "India Infradebt Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07471", | |
| "issue_size": null, | |
| "last_traded_on": 1581465600, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1025016, | |
| "current_ytm": 8.49, | |
| "display_name": "Bank Of Baroda 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08174", | |
| "issue_size": 16500000000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": null, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1282500, | |
| "current_ytm": 8.48, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.9%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GP2", | |
| "issue_size": null, | |
| "last_traded_on": 1456272000, | |
| "maturity_date": 1740441600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 2m 3d" | |
| }, | |
| { | |
| "coupon": 7.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 966014, | |
| "current_ytm": 8.48, | |
| "display_name": "Lic Housing Finance Limited 7.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KE6", | |
| "issue_size": null, | |
| "last_traded_on": 1520467200, | |
| "maturity_date": 1787011200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 27d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1036131, | |
| "current_ytm": 8.47, | |
| "display_name": "Aditya Birla Finance Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DR7", | |
| "issue_size": null, | |
| "last_traded_on": 1516838400, | |
| "maturity_date": 1773100800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3644, | |
| "ttm": "5y 2m 16d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1045086, | |
| "current_ytm": 8.47, | |
| "display_name": "Hdfc Bank Ltd 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE040A08377", | |
| "issue_size": 80000000000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": null, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1022800, | |
| "current_ytm": 8.47, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07191", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1735603200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3435, | |
| "ttm": "4y 9d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2509340, | |
| "current_ytm": 8.46, | |
| "display_name": "L&T Housing Finance Limited 8.7%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE476M07AG3", | |
| "issue_size": null, | |
| "last_traded_on": 1573430400, | |
| "maturity_date": 1627430400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 7m 6d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1021300, | |
| "current_ytm": 8.46, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07183", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1719705600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3251, | |
| "ttm": "3y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1000000, | |
| "current_ytm": 8.45, | |
| "display_name": "Sundaram Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BY6", | |
| "issue_size": null, | |
| "last_traded_on": 1525737600, | |
| "maturity_date": 1834704000, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "7y 1m 30d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1002500, | |
| "current_ytm": 8.45, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HH5", | |
| "issue_size": null, | |
| "last_traded_on": 1521417600, | |
| "maturity_date": 1748995200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 5m 13d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 102450, | |
| "current_ytm": 8.45, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07530", | |
| "issue_size": null, | |
| "last_traded_on": 1512000000, | |
| "maturity_date": 1885420800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4701, | |
| "ttm": "8y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1047700, | |
| "current_ytm": 8.44, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07376", | |
| "issue_size": null, | |
| "last_traded_on": 1508716800, | |
| "maturity_date": 1774915200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3721, | |
| "ttm": "5y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1059800, | |
| "current_ytm": 8.44, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BA1", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1916956800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4665, | |
| "ttm": "9y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 2141, | |
| "current_ytm": 8.43, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.15%", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE787H07024", | |
| "issue_size": 578354000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1616889600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100100, | |
| "current_ytm": 8.4232, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07209", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1790726400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3605, | |
| "ttm": "5y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.51, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1012000, | |
| "current_ytm": 8.42, | |
| "display_name": "India Infradebt Limited 8.51%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE537P07182", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1777939200, | |
| "rated_as_on": 1577059200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 13d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1055600, | |
| "current_ytm": 8.41, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07223", | |
| "issue_size": null, | |
| "last_traded_on": 1590105600, | |
| "maturity_date": 2124230400, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 7330, | |
| "ttm": "16y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2502000, | |
| "current_ytm": 8.4022, | |
| "display_name": "L&T Infra Debt Fund Limited 8.43%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07514", | |
| "issue_size": null, | |
| "last_traded_on": 1589760000, | |
| "maturity_date": 1948752000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 9m 11d" | |
| }, | |
| { | |
| "coupon": 7.4011, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 975924, | |
| "current_ytm": 8.4002, | |
| "display_name": "Kotak Mahindra Prime Limited 7.4011%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7QI3", | |
| "issue_size": null, | |
| "last_traded_on": 1584662400, | |
| "maturity_date": 1669593600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1109, | |
| "ttm": "1y 11m 6d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 999800, | |
| "current_ytm": 8.4, | |
| "display_name": "Lic Housing Finance Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07GP0", | |
| "issue_size": null, | |
| "last_traded_on": 1452556800, | |
| "maturity_date": 1738195200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 8d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.110179, | |
| "current_price": 1004500, | |
| "current_ytm": 8.3998, | |
| "display_name": "Axis Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE891K08042", | |
| "issue_size": null, | |
| "last_traded_on": 1583107200, | |
| "maturity_date": 1809993600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 4m 19d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1001934, | |
| "current_ytm": 8.39, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-19C 8.5 Bd 31Jn22 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AK3", | |
| "issue_size": null, | |
| "last_traded_on": 1578268800, | |
| "maturity_date": 1643587200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1320, | |
| "ttm": "1y 1m 9d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1068976, | |
| "current_ytm": 8.39, | |
| "display_name": "Aditya Birla Finance Limited 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DJ4", | |
| "issue_size": null, | |
| "last_traded_on": 1517961600, | |
| "maturity_date": 1733961600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 20d" | |
| }, | |
| { | |
| "coupon": 9.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 503350.5, | |
| "current_ytm": 8.39, | |
| "display_name": "M & M Fin Serv\n9.8 Loa 25Jn21 Fvrs5Lac L.T.D 9.8%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08KV6", | |
| "issue_size": null, | |
| "last_traded_on": 1594252800, | |
| "maturity_date": 1611532800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3713, | |
| "ttm": " 1m 3d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1018900, | |
| "current_ytm": 8.38, | |
| "display_name": "Tata Capital Housing Finance Limited 8.78%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07EM4", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1774828800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 102436.8, | |
| "current_ytm": 8.38, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE848E07476", | |
| "issue_size": null, | |
| "last_traded_on": 1525824000, | |
| "maturity_date": 1802304000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "6y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1010316, | |
| "current_ytm": 8.37, | |
| "display_name": "Lic Housing Finance Limited 8.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1468368000, | |
| "maturity_date": 1674086400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "2y 28d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 983458, | |
| "current_ytm": 8.36, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08303", | |
| "issue_size": null, | |
| "last_traded_on": 1530835200, | |
| "maturity_date": 1900627200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 3m 3d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1030968, | |
| "current_ytm": 8.36, | |
| "display_name": "L&T Infra Debt Fund Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07894", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1720137600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2191, | |
| "ttm": "3y 6m 13d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1069643, | |
| "current_ytm": 8.3576, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BF0", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1956441600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5122, | |
| "ttm": "11y 9d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 983500, | |
| "current_ytm": 8.35, | |
| "display_name": "Power Finance Corporation Ltd 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KE7", | |
| "issue_size": null, | |
| "last_traded_on": 1567123200, | |
| "maturity_date": 2038608000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 7m 17d" | |
| }, | |
| { | |
| "coupon": 7.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 970470, | |
| "current_ytm": 8.35, | |
| "display_name": "Lic Housing Finance Limited 7.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KM9", | |
| "issue_size": null, | |
| "last_traded_on": 1540512000, | |
| "maturity_date": 1790294400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "5y 9m 3d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1261830, | |
| "current_ytm": 8.35, | |
| "display_name": "Power Grid Corporation Of India Limited 8.73%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07BZ2", | |
| "issue_size": null, | |
| "last_traded_on": 1543449600, | |
| "maturity_date": 1633910400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 9m 19d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1053653, | |
| "current_ytm": 8.34, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07308", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1909008000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5442, | |
| "ttm": "9y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.236796, | |
| "current_price": 1028400, | |
| "current_ytm": 8.33, | |
| "display_name": "The Great Eastern Shipping Company Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE017A07559", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1839110400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "brickwork", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 3m 21d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1309906.25, | |
| "current_ytm": 8.32, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JL5", | |
| "issue_size": null, | |
| "last_traded_on": 1547164800, | |
| "maturity_date": 1766707200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "5y 4d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1041307, | |
| "current_ytm": 8.32, | |
| "display_name": "Icici Bank Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08SN3", | |
| "issue_size": null, | |
| "last_traded_on": 1460505600, | |
| "maturity_date": 1672444800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 9d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1011229, | |
| "current_ytm": 8.32, | |
| "display_name": "Aditya Birla Finance Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07GT8", | |
| "issue_size": null, | |
| "last_traded_on": 1585180800, | |
| "maturity_date": 1718150400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 21d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1060300, | |
| "current_ytm": 8.32, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07181", | |
| "issue_size": null, | |
| "last_traded_on": 1589241600, | |
| "maturity_date": 1998000000, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5869, | |
| "ttm": "12y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101448.5, | |
| "current_ytm": 8.32, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07765", | |
| "issue_size": null, | |
| "last_traded_on": 1521676800, | |
| "maturity_date": 1827187200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "6y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101338.9, | |
| "current_ytm": 8.32, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07757", | |
| "issue_size": null, | |
| "last_traded_on": 1521676800, | |
| "maturity_date": 1795651200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "5y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1040628, | |
| "current_ytm": 8.32, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07319", | |
| "issue_size": null, | |
| "last_traded_on": 1501718400, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3174, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101600.1, | |
| "current_ytm": 8.32, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07781", | |
| "issue_size": null, | |
| "last_traded_on": 1521590400, | |
| "maturity_date": 1890345600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1060300, | |
| "current_ytm": 8.32, | |
| "display_name": "Kudgi Transmission Limited 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07215", | |
| "issue_size": null, | |
| "last_traded_on": 1589241600, | |
| "maturity_date": 2092694400, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6965, | |
| "ttm": "15y 4m 3d" | |
| }, | |
| { | |
| "coupon": 10.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.07802, | |
| "current_price": 1033773, | |
| "current_ytm": 8.32, | |
| "display_name": "Mrf Limited 10.09%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE883A07174", | |
| "issue_size": null, | |
| "last_traded_on": 1553644800, | |
| "maturity_date": 1622073600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2511500, | |
| "current_ytm": 8.3129, | |
| "display_name": "L&T Infra Debt Fund Limited 8.43%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07506", | |
| "issue_size": null, | |
| "last_traded_on": 1589500800, | |
| "maturity_date": 1790812800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "5y 9m 9d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1049328, | |
| "current_ytm": 8.31, | |
| "display_name": "Indian Railway Finance Corporation\n8.83 Loa 14My34 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HG5", | |
| "issue_size": null, | |
| "last_traded_on": 1437523200, | |
| "maturity_date": 2031177600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8766, | |
| "ttm": "13y 4m 22d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 99900.7, | |
| "current_ytm": 8.3, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07274", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1901059200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4882, | |
| "ttm": "9y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037500, | |
| "current_ytm": 8.3, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07225", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1782777600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3981, | |
| "ttm": "5y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1039000, | |
| "current_ytm": 8.3, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LD2", | |
| "issue_size": null, | |
| "last_traded_on": 1578528000, | |
| "maturity_date": 1682294400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "2y 4m 2d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1003147, | |
| "current_ytm": 8.2983, | |
| "display_name": "L&T Housing Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476M07BU2", | |
| "issue_size": null, | |
| "last_traded_on": 1587686400, | |
| "maturity_date": 1669680000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 11m 7d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1027400, | |
| "current_ytm": 8.29, | |
| "display_name": "Fullerton India Credit Company Ltd 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08660", | |
| "issue_size": null, | |
| "last_traded_on": 1581379200, | |
| "maturity_date": 1682380800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2616, | |
| "ttm": "2y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100000, | |
| "current_ytm": 8.28, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07225", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1822262400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3970, | |
| "ttm": "6y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100000, | |
| "current_ytm": 8.28, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07159", | |
| "issue_size": null, | |
| "last_traded_on": 1596153600, | |
| "maturity_date": 1711756800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2691, | |
| "ttm": "3y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100000, | |
| "current_ytm": 8.28, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07167", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2875, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1010100, | |
| "current_ytm": 8.27, | |
| "display_name": "Lic Housing Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JT6", | |
| "issue_size": null, | |
| "last_traded_on": 1577750400, | |
| "maturity_date": 1782691200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 7d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1073777, | |
| "current_ytm": 8.27, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IZ7", | |
| "issue_size": null, | |
| "last_traded_on": 1554768000, | |
| "maturity_date": 1882656000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6575, | |
| "ttm": "8y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1322250, | |
| "current_ytm": 8.26, | |
| "display_name": "Power Grid Corporation Of India Ltd 9.33%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FF5", | |
| "issue_size": null, | |
| "last_traded_on": 1466726400, | |
| "maturity_date": 1702598400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "2y 11m 23d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100100, | |
| "current_ytm": 8.26, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07183", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1759190400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3240, | |
| "ttm": "4y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100106, | |
| "current_ytm": 8.26, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07191", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1774828800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3421, | |
| "ttm": "5y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1034300, | |
| "current_ytm": 8.25, | |
| "display_name": "L&T Infra Debt Fund Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07886", | |
| "issue_size": null, | |
| "last_traded_on": 1591142400, | |
| "maturity_date": 1719360000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": "3y 6m 4d" | |
| }, | |
| { | |
| "coupon": 9.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1056400, | |
| "current_ytm": 8.25, | |
| "display_name": "Export Import Bank Of India Sr-R-01 9.65 Bd 04Ap24 Fvrs10Lac L.T.D 9.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DP1", | |
| "issue_size": null, | |
| "last_traded_on": 1551052800, | |
| "maturity_date": 1712188800, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 13d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.383284, | |
| "current_price": 1018958, | |
| "current_ytm": 8.25, | |
| "display_name": "Sbi Cards & Payment Services Private Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018E08136", | |
| "issue_size": null, | |
| "last_traded_on": 1579219200, | |
| "maturity_date": 1655424000, | |
| "rated_as_on": 1581984000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1277, | |
| "ttm": "1y 5m 26d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100100, | |
| "current_ytm": 8.25, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07175", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1743292800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3056, | |
| "ttm": "4y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1056900, | |
| "current_ytm": 8.24, | |
| "display_name": "Konkan Railway Corporation Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE139F07055", | |
| "issue_size": null, | |
| "last_traded_on": 1452038400, | |
| "maturity_date": 1723334400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 7m 20d" | |
| }, | |
| { | |
| "coupon": 8.3726, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1001149, | |
| "current_ytm": 8.23, | |
| "display_name": "Kotak Mahindra Prime Limited 8.3726%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7QC6", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1635379200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 916, | |
| "ttm": " 10m 6d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.266884, | |
| "current_price": 995212, | |
| "current_ytm": 8.23, | |
| "display_name": "Bhopal Dhule Transmission Company Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774N07061", | |
| "issue_size": null, | |
| "last_traded_on": 1574726400, | |
| "maturity_date": 1617148800, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1401, | |
| "ttm": " 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 998800, | |
| "current_ytm": 8.23, | |
| "display_name": "Indian Railway Finance Corporation\n8.20 Loa 27Ap23 Fvrs10Lac L.T.D 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GM5", | |
| "issue_size": null, | |
| "last_traded_on": 1546300800, | |
| "maturity_date": 1682553600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "2y 4m 5d" | |
| }, | |
| { | |
| "coupon": 9.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1052316, | |
| "current_ytm": 8.23, | |
| "display_name": "Sundaram Finance Limited 9.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BS8", | |
| "issue_size": null, | |
| "last_traded_on": 1582588800, | |
| "maturity_date": 1732665600, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 5d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1008509, | |
| "current_ytm": 8.22, | |
| "display_name": "Aditya Birla Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07DF4", | |
| "issue_size": null, | |
| "last_traded_on": 1563321600, | |
| "maturity_date": 1620259200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 14d" | |
| }, | |
| { | |
| "coupon": 8.97, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1036400, | |
| "current_ytm": 8.22, | |
| "display_name": "Aditya Birla Finance Limited 8.97%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DT3", | |
| "issue_size": null, | |
| "last_traded_on": 1581897600, | |
| "maturity_date": 1785196800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 6d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 1038000, | |
| "current_ytm": 8.22, | |
| "display_name": "State Bank Of India 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08165", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1856736000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 11d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101327.5, | |
| "current_ytm": 8.22, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07856", | |
| "issue_size": null, | |
| "last_traded_on": 1552348800, | |
| "maturity_date": 1752451200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100391, | |
| "current_ytm": 8.21, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07241", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1853884800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4336, | |
| "ttm": "7y 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1025363, | |
| "current_ytm": 8.21, | |
| "display_name": "Sundaram Finance Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08CB2", | |
| "issue_size": null, | |
| "last_traded_on": 1581638400, | |
| "maturity_date": 1884988800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 9m 3d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1032500, | |
| "current_ytm": 8.21, | |
| "display_name": "Aditya Birla Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DW7", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1795132800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "5y 10m 29d" | |
| }, | |
| { | |
| "coupon": 9.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1060800, | |
| "current_ytm": 8.2, | |
| "display_name": "Sundaram Finance Limited 9.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BR0", | |
| "issue_size": null, | |
| "last_traded_on": 1581465600, | |
| "maturity_date": 1731369600, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1015000, | |
| "current_ytm": 8.2, | |
| "display_name": "Aditya Birla Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R08068", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1811808000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 10d" | |
| }, | |
| { | |
| "coupon": 10.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1075000, | |
| "current_ytm": 8.2, | |
| "display_name": "Family Credit Limited 10.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08038", | |
| "issue_size": null, | |
| "last_traded_on": 1588204800, | |
| "maturity_date": 1719532800, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 6m 6d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 990437, | |
| "current_ytm": 8.2, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KU4", | |
| "issue_size": null, | |
| "last_traded_on": 1545264000, | |
| "maturity_date": 1684540800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 100500, | |
| "current_ytm": 8.19, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07233", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1837987200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4152, | |
| "ttm": "7y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101986.8, | |
| "current_ytm": 8.19, | |
| "display_name": "Nhpc Limited 8.7%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07237", | |
| "issue_size": null, | |
| "last_traded_on": 1459123200, | |
| "maturity_date": 1613001600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": " 1m 20d" | |
| }, | |
| { | |
| "coupon": 7.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 986618, | |
| "current_ytm": 8.16, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 7.82%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07415", | |
| "issue_size": null, | |
| "last_traded_on": 1521417600, | |
| "maturity_date": 1672444800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2704, | |
| "ttm": "2y 9d" | |
| }, | |
| { | |
| "coupon": 10.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1068900, | |
| "current_ytm": 8.16, | |
| "display_name": "Bajaj Finance Limited 10.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08714", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1726704000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 28d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1042800, | |
| "current_ytm": 8.16, | |
| "display_name": "Hdfc Credila Financial Services Private Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K07122", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1877990400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 6m 14d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.323719, | |
| "current_price": 1038450, | |
| "current_ytm": 8.16, | |
| "display_name": "Axis Bank Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE238A08344", | |
| "issue_size": null, | |
| "last_traded_on": 1519776000, | |
| "maturity_date": 1672444800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 9d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101763.8, | |
| "current_ytm": 8.15, | |
| "display_name": "Nhpc Limited 8.49%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07641", | |
| "issue_size": null, | |
| "last_traded_on": 1444348800, | |
| "maturity_date": 1669420800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "1y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1010800, | |
| "current_ytm": 8.15, | |
| "display_name": "Tata Capital Limited 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE976I08292", | |
| "issue_size": null, | |
| "last_traded_on": 1589846400, | |
| "maturity_date": 1638489600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 11m 11d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1040344, | |
| "current_ytm": 8.15, | |
| "display_name": "Export Import Bank Of India 9.15 Bd 08Mr21 Fvrs10Lac L.T.D 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08936", | |
| "issue_size": null, | |
| "last_traded_on": 1453852800, | |
| "maturity_date": 1615161600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 14d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1181.01, | |
| "current_ytm": 8.15, | |
| "display_name": "L&T Finance Ltd", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE027E07915", | |
| "issue_size": 804397000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1649808000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 3m 22d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1300875, | |
| "current_ytm": 8.14, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.9%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GN7", | |
| "issue_size": null, | |
| "last_traded_on": 1446422400, | |
| "maturity_date": 1677283200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "2y 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2577250, | |
| "current_ytm": 8.13, | |
| "display_name": "L&T Infra Debt Fund Limited 8.8%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07431", | |
| "issue_size": null, | |
| "last_traded_on": 1590537600, | |
| "maturity_date": 1781654400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 26d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1011200, | |
| "current_ytm": 8.12, | |
| "display_name": "Power Finance Corporation Ltd 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KF4", | |
| "issue_size": null, | |
| "last_traded_on": 1580083200, | |
| "maturity_date": 2041113600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 8m 15d" | |
| }, | |
| { | |
| "coupon": 7.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 989469, | |
| "current_ytm": 8.12, | |
| "display_name": "Sp Jammu Udhampur Highway Limited 7.82%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE923L07407", | |
| "issue_size": null, | |
| "last_traded_on": 1521417600, | |
| "maturity_date": 1656547200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2520, | |
| "ttm": "1y 6m 8d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1328212.5, | |
| "current_ytm": 8.12, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07II3", | |
| "issue_size": null, | |
| "last_traded_on": 1521072000, | |
| "maturity_date": 1685491200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "2y 5m 9d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 992759, | |
| "current_ytm": 8.11, | |
| "display_name": "Bajaj Finance Limited 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07NS8", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1644278400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 1m 17d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 999126, | |
| "current_ytm": 8.1, | |
| "display_name": "Sundaram Home Finance Limited 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE667F07HO0", | |
| "issue_size": null, | |
| "last_traded_on": 1587340800, | |
| "maturity_date": 1670198400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 11m 13d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1055496, | |
| "current_ytm": 8.1, | |
| "display_name": "Indian Railway Finance Corporation\n8.83 Loa 14My31 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HD2", | |
| "issue_size": null, | |
| "last_traded_on": 1558569600, | |
| "maturity_date": 1936483200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7670, | |
| "ttm": "10y 4m 22d" | |
| }, | |
| { | |
| "coupon": 8.53, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1020, | |
| "current_ytm": 8.1, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.53%", | |
| "face_value": 1000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774D08LT8", | |
| "issue_size": 9000000, | |
| "last_traded_on": 1592870400, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101100, | |
| "current_ytm": 8.1, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07266", | |
| "issue_size": null, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1885420800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4701, | |
| "ttm": "8y 9m 8d" | |
| }, | |
| { | |
| "coupon": 10.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1070000, | |
| "current_ytm": 8.09, | |
| "display_name": "Hdb Financial Services Limited 10.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08066", | |
| "issue_size": null, | |
| "last_traded_on": 1582761600, | |
| "maturity_date": 1710720000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 2m 25d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1010560, | |
| "current_ytm": 8.09, | |
| "display_name": "Icici Lombard Gen Insurance Co Ltd 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE765G08012", | |
| "issue_size": null, | |
| "last_traded_on": 1479168000, | |
| "maturity_date": 1785196800, | |
| "rated_as_on": 1555977600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 6d" | |
| }, | |
| { | |
| "coupon": 10.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1073000, | |
| "current_ytm": 8.09, | |
| "display_name": "Tata Capital Financial Services Limited 10.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08029", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1727308800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 4d" | |
| }, | |
| { | |
| "coupon": 9.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1034250, | |
| "current_ytm": 8.09, | |
| "display_name": "L & T Finance Ltd 9.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE523E08NH8", | |
| "issue_size": null, | |
| "last_traded_on": 1599782400, | |
| "maturity_date": 1671580800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 29d" | |
| }, | |
| { | |
| "coupon": 9.08, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1061388, | |
| "current_ytm": 8.08, | |
| "display_name": "Lic Housing Finance Limited 9.08%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07ND2", | |
| "issue_size": null, | |
| "last_traded_on": 1577750400, | |
| "maturity_date": 1854748800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1045800, | |
| "current_ytm": 8.07, | |
| "display_name": "Tata Capital Financial Services Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08078", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1753142400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1025000, | |
| "current_ytm": 8.06, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I08339", | |
| "issue_size": null, | |
| "last_traded_on": 1591228800, | |
| "maturity_date": 1739836800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 27d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1030500, | |
| "current_ytm": 8.06, | |
| "display_name": "L&T Infra Debt Fund Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07860", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1692316800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1886, | |
| "ttm": "2y 7m 27d" | |
| }, | |
| { | |
| "coupon": 8.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1064000, | |
| "current_ytm": 8.05, | |
| "display_name": "Indian Railway Finance Corporation\n8.72 Loa 04My35 Fvrs10Lac L.T.D 8.72%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HC4", | |
| "issue_size": null, | |
| "last_traded_on": 1467072000, | |
| "maturity_date": 2061849600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 9131, | |
| "ttm": "14y 4m 12d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 498660, | |
| "current_ytm": 8.0493, | |
| "display_name": "Icici Home Finance Company Limited 8.0%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE071G08AB3", | |
| "issue_size": null, | |
| "last_traded_on": 1580774400, | |
| "maturity_date": 1733356800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 11m 13d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1001855, | |
| "current_ytm": 8.04, | |
| "display_name": "National Housing Bank 8.14 Loa 27Dc21 Fvrs10Lac L.T.D 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FB2", | |
| "issue_size": null, | |
| "last_traded_on": 1578009600, | |
| "maturity_date": 1640563200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5d" | |
| }, | |
| { | |
| "coupon": 8.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1064100, | |
| "current_ytm": 8.04, | |
| "display_name": "Indian Railway Finance Corporation\n8.72 Loa 04My33 Fvrs10Lac L.T.D 8.72%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HA8", | |
| "issue_size": null, | |
| "last_traded_on": 1424908800, | |
| "maturity_date": 1998777600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8401, | |
| "ttm": "12y 4m 12d" | |
| }, | |
| { | |
| "coupon": 8.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1065600, | |
| "current_ytm": 8.04, | |
| "display_name": "Indian Railway Finance Corporation\n8.72 Loa 04My34 Fvrs10Lac L.T.D 8.72%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HB6", | |
| "issue_size": null, | |
| "last_traded_on": 1424908800, | |
| "maturity_date": 2030313600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8766, | |
| "ttm": "13y 4m 12d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1315000, | |
| "current_ytm": 8.04, | |
| "display_name": "Power Grid Corporation Of India Ltd 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07CX5", | |
| "issue_size": null, | |
| "last_traded_on": 1470787200, | |
| "maturity_date": 1644364800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "1y 1m 18d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1042800, | |
| "current_ytm": 8.04, | |
| "display_name": "Hdfc Credila Financial Services Private Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K07130", | |
| "issue_size": null, | |
| "last_traded_on": 1577059200, | |
| "maturity_date": 1880236800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 7m 10d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1306617.5, | |
| "current_ytm": 8.04, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IH5", | |
| "issue_size": null, | |
| "last_traded_on": 1548806400, | |
| "maturity_date": 1653955200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "1y 5m 9d" | |
| }, | |
| { | |
| "coupon": 9.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1067875, | |
| "current_ytm": 8.0325, | |
| "display_name": "Hdfc Credila Financial Services Private Limited 9.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K08195", | |
| "issue_size": null, | |
| "last_traded_on": 1588118400, | |
| "maturity_date": 1875398400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 15d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1054604, | |
| "current_ytm": 8.03, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07277", | |
| "issue_size": null, | |
| "last_traded_on": 1480550400, | |
| "maturity_date": 1695945600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2807, | |
| "ttm": "2y 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1026.404, | |
| "current_ytm": 8.03, | |
| "display_name": "L&T Finance Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07AE6", | |
| "issue_size": 728526000, | |
| "last_traded_on": 1581552000, | |
| "maturity_date": 1713139200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1030800, | |
| "current_ytm": 8.03, | |
| "display_name": "Power Finance Corporation Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DA0", | |
| "issue_size": null, | |
| "last_traded_on": 1579564800, | |
| "maturity_date": 1749945600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 5m 24d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1050500, | |
| "current_ytm": 8.03, | |
| "display_name": "Aditya Birla Finance Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DN6", | |
| "issue_size": null, | |
| "last_traded_on": 1591142400, | |
| "maturity_date": 1755820800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "4y 8m" | |
| }, | |
| { | |
| "coupon": 8.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1000900, | |
| "current_ytm": 8.02, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.04%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07178", | |
| "issue_size": null, | |
| "last_traded_on": 1493856000, | |
| "maturity_date": 1658188800, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1917, | |
| "ttm": "1y 6m 27d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1032000, | |
| "current_ytm": 8.02, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I08347", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1744848000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 26d" | |
| }, | |
| { | |
| "coupon": 9.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1089872, | |
| "current_ytm": 8.02, | |
| "display_name": "Power Finance Corporation Ltd 9.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GH8", | |
| "issue_size": null, | |
| "last_traded_on": 1577404800, | |
| "maturity_date": 1882483200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 8m 5d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1002538, | |
| "current_ytm": 8.01, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 19G 8.15 Bd 22Ag22 Fvrs10Lac L.T.D 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BB0", | |
| "issue_size": null, | |
| "last_traded_on": 1596067200, | |
| "maturity_date": 1661126400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1279, | |
| "ttm": "1y 8m" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 101756.2, | |
| "current_ytm": 8.01, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07831", | |
| "issue_size": null, | |
| "last_traded_on": 1551916800, | |
| "maturity_date": 1689292800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "2y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1032300, | |
| "current_ytm": 8.01, | |
| "display_name": "Bank Of Baroda 8.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08182", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": null, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1072844, | |
| "current_ytm": 8.01, | |
| "display_name": "Fullerton India Credit Company Ltd 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08728", | |
| "issue_size": null, | |
| "last_traded_on": 1597190400, | |
| "maturity_date": 1844035200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3649, | |
| "ttm": "7y 5m 17d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1022740, | |
| "current_ytm": 8.01, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HX2", | |
| "issue_size": null, | |
| "last_traded_on": 1565136000, | |
| "maturity_date": 1756425600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 999343, | |
| "current_ytm": 8.0025, | |
| "display_name": "Credila Financial Services Pvt. Ltd 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K07064", | |
| "issue_size": null, | |
| "last_traded_on": 1588204800, | |
| "maturity_date": 1645747200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101700, | |
| "current_ytm": 8, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07258", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1869523200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4517, | |
| "ttm": "8y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1014.112, | |
| "current_ytm": 8, | |
| "display_name": "Tata Capital Financial Services Ltd 8.4%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LJ1", | |
| "issue_size": 977140000, | |
| "last_traded_on": 1587945600, | |
| "maturity_date": 1724630400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 8m 4d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.383284, | |
| "current_price": 1007600, | |
| "current_ytm": 8, | |
| "display_name": "Sbi Cards & Payment Services Private Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018E08086", | |
| "issue_size": null, | |
| "last_traded_on": 1590019200, | |
| "maturity_date": 1684281600, | |
| "rated_as_on": 1581984000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2130, | |
| "ttm": "2y 4m 25d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1010600, | |
| "current_ytm": 8, | |
| "display_name": "Ongc Petro Additions Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE163N08107", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1678406400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": "2y 2m 16d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1059116, | |
| "current_ytm": 8, | |
| "display_name": "Power Finance Corporation Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FL2", | |
| "issue_size": null, | |
| "last_traded_on": 1574380800, | |
| "maturity_date": 1836345600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 2m 18d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1000, | |
| "current_ytm": 8, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07GL1", | |
| "issue_size": 299345000, | |
| "last_traded_on": 1597881600, | |
| "maturity_date": 1673654400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "2y 23d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1033400, | |
| "current_ytm": 7.9955, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I08354", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1745193600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 30d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1273961.25, | |
| "current_ytm": 7.99, | |
| "display_name": "Power Grid Corporation Of India Limited 8.8%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GA4", | |
| "issue_size": null, | |
| "last_traded_on": 1547078400, | |
| "maturity_date": 1632873600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": " 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1281956.25, | |
| "current_ytm": 7.98, | |
| "display_name": "Power Grid Corporation Of India Limited 8.8%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GB2", | |
| "issue_size": null, | |
| "last_traded_on": 1547078400, | |
| "maturity_date": 1664409600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "1y 9m 7d" | |
| }, | |
| { | |
| "coupon": 10.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1077500, | |
| "current_ytm": 7.98, | |
| "display_name": "Tata Capital Housing Finance Limited 10.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L08171", | |
| "issue_size": null, | |
| "last_traded_on": 1589760000, | |
| "maturity_date": 1727308800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 4d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1028362, | |
| "current_ytm": 7.98, | |
| "display_name": "Export Import Bank Of India 9.05 Bd 22Fb22 Fvrs10Lac L.T.D 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08AS1", | |
| "issue_size": null, | |
| "last_traded_on": 1547769600, | |
| "maturity_date": 1645488000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 2m" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1022193, | |
| "current_ytm": 7.98, | |
| "display_name": "State Bank Of Travancore Sr-I 8.45 Bd 30Mr26 Fvrs10Lac L.T.D 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE654A08011", | |
| "issue_size": null, | |
| "last_traded_on": 1582588800, | |
| "maturity_date": 1774828800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 8d" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 960000, | |
| "current_ytm": 7.98, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 7.22%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE202E08011", | |
| "issue_size": null, | |
| "last_traded_on": 1581033600, | |
| "maturity_date": 1801872000, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 1m 15d" | |
| }, | |
| { | |
| "coupon": 9.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.3387556, | |
| "current_price": 1069800, | |
| "current_ytm": 7.98, | |
| "display_name": "L&T Fincorp Limited 9.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE759E08010", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1735603200, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1037377, | |
| "current_ytm": 7.97, | |
| "display_name": "Bank Of Baroda 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08158", | |
| "issue_size": null, | |
| "last_traded_on": 1571788800, | |
| "maturity_date": 1865721600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 23d" | |
| }, | |
| { | |
| "coupon": 9.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.3387556, | |
| "current_price": 1073200, | |
| "current_ytm": 7.97, | |
| "display_name": "L&T Fincorp Limited 9.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE759E08028", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1743120000, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 3m 6d" | |
| }, | |
| { | |
| "coupon": 9.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1052300, | |
| "current_ytm": 7.96, | |
| "display_name": "Tata Capital Financial Services Limited 9.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08052", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1743379200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 9d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1168, | |
| "current_ytm": 7.96, | |
| "display_name": "L&T Finance Ltd", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE027E07AD8", | |
| "issue_size": 161135000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1649980800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1018600, | |
| "current_ytm": 7.96, | |
| "display_name": "Rec Limited 8.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BW5", | |
| "issue_size": null, | |
| "last_traded_on": 1574899200, | |
| "maturity_date": 2039817600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 8m" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1560, | |
| "current_ytm": 7.95, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE774D08MG3", | |
| "issue_size": 269593000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 10.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1041100, | |
| "current_ytm": 7.95, | |
| "display_name": "Aditya Birla Finance Limited 10.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08DE5", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1644883200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3646, | |
| "ttm": "1y 1m 24d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 207007.4, | |
| "current_ytm": 7.95, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 9.0%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07GY4", | |
| "issue_size": null, | |
| "last_traded_on": 1547078400, | |
| "maturity_date": 1674604800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "2y 1m 3d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1006500, | |
| "current_ytm": 7.94, | |
| "display_name": "Tata Capital Financial Services Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07JV0", | |
| "issue_size": null, | |
| "last_traded_on": 1599696000, | |
| "maturity_date": 1674172800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "2y 29d" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1001960, | |
| "current_ytm": 7.94, | |
| "display_name": "National Housing Bank 8.05 Loa 10Jn22 Fvrs10Lac L.T.D 8.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FC0", | |
| "issue_size": null, | |
| "last_traded_on": 1581033600, | |
| "maturity_date": 1641772800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 19d" | |
| }, | |
| { | |
| "coupon": 8.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1037000, | |
| "current_ytm": 7.94, | |
| "display_name": "Lic Housing Finance Limited 8.57%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HP8", | |
| "issue_size": null, | |
| "last_traded_on": 1490832000, | |
| "maturity_date": 1752796800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 6m 26d" | |
| }, | |
| { | |
| "coupon": 8.42, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1031106, | |
| "current_ytm": 7.93, | |
| "display_name": "Bank Of Baroda 8.42%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08125", | |
| "issue_size": null, | |
| "last_traded_on": 1571356800, | |
| "maturity_date": 1859760000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 15d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1097675, | |
| "current_ytm": 7.93, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07BD5", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1940544000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4938, | |
| "ttm": "10y 6m 8d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1032.877, | |
| "current_ytm": 7.93, | |
| "display_name": "Tata Capital Financial Services Ltd 8.55%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LL7", | |
| "issue_size": 924814000, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 1819238400, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 8m 4d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1011300, | |
| "current_ytm": 7.93, | |
| "display_name": "Indian Renewable Energy Development Agency L. Sr-V A 8.44 Loa 10My23 Fvrs10Lac L.T.D 8.44%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07088", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1683676800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 18d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1038452, | |
| "current_ytm": 7.93, | |
| "display_name": "Lic Housing Finance Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DI2", | |
| "issue_size": null, | |
| "last_traded_on": 1564099200, | |
| "maturity_date": 1672531200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1090000, | |
| "current_ytm": 7.92, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07533", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1900972800, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5180, | |
| "ttm": "9y 3m 7d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 2140, | |
| "current_ytm": -7.92, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07040", | |
| "issue_size": 107835000, | |
| "last_traded_on": 1605571200, | |
| "maturity_date": 1774656000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1031987, | |
| "current_ytm": 7.91, | |
| "display_name": "Rec Limited 8.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BX3", | |
| "issue_size": null, | |
| "last_traded_on": 1578873600, | |
| "maturity_date": 2041977600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 8m 25d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1034500, | |
| "current_ytm": 7.91, | |
| "display_name": "Lic Housing Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HW4", | |
| "issue_size": null, | |
| "last_traded_on": 1487203200, | |
| "maturity_date": 1756425600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2185.05, | |
| "current_ytm": 7.91, | |
| "display_name": "L&T Infrastructure Finance Company Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE691I07273", | |
| "issue_size": 3775581000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1641686400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 18d" | |
| }, | |
| { | |
| "coupon": 8.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1001924, | |
| "current_ytm": 7.91, | |
| "display_name": "National Housing Bank 8.02 Loa 31Jn22 Fvrs10Lac L.T.D 8.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FD8", | |
| "issue_size": null, | |
| "last_traded_on": 1580428800, | |
| "maturity_date": 1643587200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1097, | |
| "ttm": "1y 1m 9d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 1030500, | |
| "current_ytm": 7.91, | |
| "display_name": "State Bank Of India 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08157", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": null, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 8.51, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2596250, | |
| "current_ytm": 7.91, | |
| "display_name": "L&T Infra Debt Fund Limited 8.51%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07050", | |
| "issue_size": null, | |
| "last_traded_on": 1592956800, | |
| "maturity_date": 1895788800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 1m 6d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 508373.5, | |
| "current_ytm": 7.9, | |
| "display_name": "Icici Home Finance Company Limited 9.1%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE071G08957", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1640304000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1001551, | |
| "current_ytm": 7.9, | |
| "display_name": "National Housing Bank 8 Loa 22Fb22 Fvrs10Lac L.T.D 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FE6", | |
| "issue_size": null, | |
| "last_traded_on": 1588550400, | |
| "maturity_date": 1645488000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 497329.5, | |
| "current_ytm": 7.9, | |
| "display_name": "Icici Home Finance Company Limited 7.7%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE071G08AA5", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1670198400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 11m 13d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1027935, | |
| "current_ytm": 7.9, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08220", | |
| "issue_size": null, | |
| "last_traded_on": 1558483200, | |
| "maturity_date": 1795824000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "5y 11m 6d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1051253, | |
| "current_ytm": 7.88, | |
| "display_name": "L & T Infrastructure Finance Company Limited 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE691I07356", | |
| "issue_size": null, | |
| "last_traded_on": 1493251200, | |
| "maturity_date": 1673395200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 20d" | |
| }, | |
| { | |
| "coupon": 8.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1027440, | |
| "current_ytm": 7.87, | |
| "display_name": "Lic Housing Finance Limited 8.43%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JW0", | |
| "issue_size": null, | |
| "last_traded_on": 1580342400, | |
| "maturity_date": 1783641600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "5y 6m 18d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1013353, | |
| "current_ytm": 7.87, | |
| "display_name": "Indian Railway Finance Corporation\n8.20 Loa 27Ap24 Fvrs10Lac L.T.D 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GN3", | |
| "issue_size": null, | |
| "last_traded_on": 1558051200, | |
| "maturity_date": 1714176000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 4m 5d" | |
| }, | |
| { | |
| "coupon": 8.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1029157, | |
| "current_ytm": 7.87, | |
| "display_name": "Lic Housing Finance Limited 8.47%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JP4", | |
| "issue_size": null, | |
| "last_traded_on": 1580342400, | |
| "maturity_date": 1781049600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 19d" | |
| }, | |
| { | |
| "coupon": 7.53, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 978807, | |
| "current_ytm": 7.86, | |
| "display_name": "Ultratech Cement Limited 7.53%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G07190", | |
| "issue_size": null, | |
| "last_traded_on": 1488499200, | |
| "maturity_date": 1787270400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "5y 7m 30d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1293867.5, | |
| "current_ytm": 7.85, | |
| "display_name": "Power Grid Corporation Of India Ltd 9.2%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FO7", | |
| "issue_size": null, | |
| "last_traded_on": 1519862400, | |
| "maturity_date": 1615507200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": " 2m 18d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1006800, | |
| "current_ytm": 7.85, | |
| "display_name": "Sundaram Home Finance Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE667F07HP7", | |
| "issue_size": null, | |
| "last_traded_on": 1592265600, | |
| "maturity_date": 1679270400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": "2y 2m 26d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.009908, | |
| "current_price": 1043900, | |
| "current_ytm": 7.85, | |
| "display_name": "Tata Sons Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE895D07487", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1718755200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 5m 28d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1096691, | |
| "current_ytm": 7.84, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IY0", | |
| "issue_size": null, | |
| "last_traded_on": 1560816000, | |
| "maturity_date": 1851120000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6210, | |
| "ttm": "7y 8m 7d" | |
| }, | |
| { | |
| "coupon": 9.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1145819, | |
| "current_ytm": 7.8267, | |
| "display_name": "India Infrastructure Finance Company Limited 9.41%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07057", | |
| "issue_size": null, | |
| "last_traded_on": 1587340800, | |
| "maturity_date": 2132265600, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 9131, | |
| "ttm": "16y 7m 5d" | |
| }, | |
| { | |
| "coupon": 7.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10042850, | |
| "current_ytm": 7.82, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.9%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07PN8", | |
| "issue_size": null, | |
| "last_traded_on": 1573776000, | |
| "maturity_date": 1787529600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 8m 2d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1090000, | |
| "current_ytm": 7.82, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07491", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1869523200, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4816, | |
| "ttm": "8y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1024140, | |
| "current_ytm": 7.82, | |
| "display_name": "Lic Housing Finance Limited 8.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IC4", | |
| "issue_size": null, | |
| "last_traded_on": 1571097600, | |
| "maturity_date": 1759881600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 16d" | |
| }, | |
| { | |
| "coupon": 9.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 515043.5, | |
| "current_ytm": 7.81, | |
| "display_name": "L & T Infrastructure Finance Company Limited 9.9%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE691I08248", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1651190400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "1y 4m 7d" | |
| }, | |
| { | |
| "coupon": 8.1932, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2522325, | |
| "current_ytm": 7.8, | |
| "display_name": "L&T Infra Debt Fund Limited 8.1932%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07845", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1685404800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1946, | |
| "ttm": "2y 5m 8d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1060100, | |
| "current_ytm": 7.8, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LJ9", | |
| "issue_size": null, | |
| "last_traded_on": 1593648000, | |
| "maturity_date": 1731628800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 10m 24d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1274115, | |
| "current_ytm": 7.79, | |
| "display_name": "Power Grid Corporation Of India Limited 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GX6", | |
| "issue_size": null, | |
| "last_traded_on": 1552003200, | |
| "maturity_date": 1616976000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": " 3m 7d" | |
| }, | |
| { | |
| "coupon": 7.98, | |
| "credit_rating": "A1+", | |
| "current_pod": 1, | |
| "current_price": 1010500, | |
| "current_ytm": 7.78, | |
| "display_name": "Andhra Bank Sr D 7.98 Loa 24Ot27 Fvrs10Lac L.T.D 7.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE434A08075", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1824336000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 10m 2d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1043.8, | |
| "current_ytm": 7.78, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.7%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LX0", | |
| "issue_size": 8000000, | |
| "last_traded_on": 1489968000, | |
| "maturity_date": 1686009600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 5m 15d" | |
| }, | |
| { | |
| "coupon": 7.77, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.270433, | |
| "current_price": 999700, | |
| "current_ytm": 7.78, | |
| "display_name": "Canfin Homes Limited 7.77%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE477A07217", | |
| "issue_size": null, | |
| "last_traded_on": 1480550400, | |
| "maturity_date": 1636934400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 10m 24d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1008216, | |
| "current_ytm": 7.78, | |
| "display_name": "Aditya Birla Finance Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07EN6", | |
| "issue_size": null, | |
| "last_traded_on": 1505865600, | |
| "maturity_date": 1646870400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 2m 16d" | |
| }, | |
| { | |
| "coupon": 9.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1023828, | |
| "current_ytm": 7.77, | |
| "display_name": "Lic Housing Finance Limited 9.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NF7", | |
| "issue_size": null, | |
| "last_traded_on": 1588204800, | |
| "maturity_date": 1648080000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1247, | |
| "ttm": "1y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.96, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1049842, | |
| "current_ytm": 7.77, | |
| "display_name": "Hdfc\n8.96 Ncd 08Ap25 Fvrs10Lac L.T.D 8.96%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07FG3", | |
| "issue_size": null, | |
| "last_traded_on": 1578009600, | |
| "maturity_date": 1744070400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 3m 17d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1070, | |
| "current_ytm": 7.77, | |
| "display_name": "L&T Finance Ltd 8.84%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE027E07980", | |
| "issue_size": 7025000, | |
| "last_traded_on": 1577059200, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.3387556, | |
| "current_price": 1058600, | |
| "current_ytm": 7.76, | |
| "display_name": "L&T Fincorp Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE759E08036", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1757376000, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 8m 18d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 103348.9, | |
| "current_ytm": 7.76, | |
| "display_name": "Nhpc Limited 8.49%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07658", | |
| "issue_size": null, | |
| "last_traded_on": 1515024000, | |
| "maturity_date": 1700956800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "2y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 10707.68, | |
| "current_ytm": 7.76, | |
| "display_name": "State Bank Of India 9.5%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08025", | |
| "issue_size": 8669200000, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1762214400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 10m 13d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1008963, | |
| "current_ytm": 7.76, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07152", | |
| "issue_size": null, | |
| "last_traded_on": 1503446400, | |
| "maturity_date": 1649808000, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1897, | |
| "ttm": "1y 3m 22d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1035111, | |
| "current_ytm": 7.76, | |
| "display_name": "Lic Housing Finance Limited 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JI9", | |
| "issue_size": null, | |
| "last_traded_on": 1496361600, | |
| "maturity_date": 1777248000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 5d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1056309, | |
| "current_ytm": 7.76, | |
| "display_name": "Fullerton India Credit Company Ltd 9.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07AO0", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1754611200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2555, | |
| "ttm": "4y 7m 17d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2615750, | |
| "current_ytm": 7.75, | |
| "display_name": "L&T Infra Debt Fund Limited 8.75%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07399", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1781049600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 19d" | |
| }, | |
| { | |
| "coupon": 10.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1068300, | |
| "current_ytm": 7.75, | |
| "display_name": "Hdb Financial Services Limited 10.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08041", | |
| "issue_size": null, | |
| "last_traded_on": 1592784000, | |
| "maturity_date": 1697500800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "2y 9m 25d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 85850, | |
| "current_ytm": 7.75, | |
| "display_name": "Pfc Tx Sr-19\n Loa 30Dc22 Fv Rs 1 Lac L.T.D", | |
| "face_value": 100000, | |
| "frequency": "At maturity", | |
| "isin": "INE134E08693", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1672358400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "2y 8d" | |
| }, | |
| { | |
| "coupon": 8.08, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.110179, | |
| "current_price": 1017000, | |
| "current_ytm": 7.75, | |
| "display_name": "Axis Finance Limited 8.08%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE891K08059", | |
| "issue_size": null, | |
| "last_traded_on": 1598572800, | |
| "maturity_date": 1820880000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 8m 23d" | |
| }, | |
| { | |
| "coupon": 9.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 10918.14, | |
| "current_ytm": 7.75, | |
| "display_name": "State Bank Of India 9.95%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08058", | |
| "issue_size": 39375950000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1773619200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 2m 22d" | |
| }, | |
| { | |
| "coupon": 8.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1034417, | |
| "current_ytm": 7.75, | |
| "display_name": "Tata Capital Financial Services Limited 8.67%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LC6", | |
| "issue_size": null, | |
| "last_traded_on": 1591833600, | |
| "maturity_date": 1736899200, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2052, | |
| "ttm": "4y 24d" | |
| }, | |
| { | |
| "coupon": 8.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1036836, | |
| "current_ytm": 7.75, | |
| "display_name": "Nhpc Limited 8.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07914", | |
| "issue_size": null, | |
| "last_traded_on": 1576627200, | |
| "maturity_date": 1940284800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 6m 5d" | |
| }, | |
| { | |
| "coupon": 8.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1039574, | |
| "current_ytm": 7.74, | |
| "display_name": "Power Grid Corporation Of India Limited 8.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OH3", | |
| "issue_size": null, | |
| "last_traded_on": 1577404800, | |
| "maturity_date": 1862438400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 16d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2097.52, | |
| "current_ytm": 7.73, | |
| "display_name": "L&T Infrastructure Finance Company Ltd 8.7%", | |
| "face_value": 1000, | |
| "frequency": "At maturity", | |
| "isin": "INE691I07307", | |
| "issue_size": 3575518000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1648080000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 3m 2d" | |
| }, | |
| { | |
| "coupon": 9.255, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1049000, | |
| "current_ytm": 7.73, | |
| "display_name": "Idfc Infrastructure Finance Limited 9.255%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07319", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1723593600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2218, | |
| "ttm": "3y 7m 23d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1036570, | |
| "current_ytm": 7.73, | |
| "display_name": "Export Import Bank Of India 9.15 Bd 25Fb21 Fvrs10Lac L.T.D 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08928", | |
| "issue_size": null, | |
| "last_traded_on": 1520553600, | |
| "maturity_date": 1614211200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1054000, | |
| "current_ytm": 7.73, | |
| "display_name": "Bank Of Baroda 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08141", | |
| "issue_size": null, | |
| "last_traded_on": 1587427200, | |
| "maturity_date": 1862697600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 19d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.110179, | |
| "current_price": 1016535, | |
| "current_ytm": 7.7233, | |
| "display_name": "Axis Finance Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE891K07473", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1687824000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1461, | |
| "ttm": "2y 6m 5d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1036154, | |
| "current_ytm": 7.72, | |
| "display_name": "Lic Housing Finance Limited 8.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HT0", | |
| "issue_size": null, | |
| "last_traded_on": 1587427200, | |
| "maturity_date": 1754006400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 7m 10d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 210053, | |
| "current_ytm": 7.72, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 9.0%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07GZ1", | |
| "issue_size": null, | |
| "last_traded_on": 1553212800, | |
| "maturity_date": 1706140800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "3y 1m 3d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1036745, | |
| "current_ytm": 7.72, | |
| "display_name": "Export Import Bank Of India Sr-P-06 9.1 Bd 15Ju22 Fvrs10Lac L.T.D 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BA7", | |
| "issue_size": null, | |
| "last_traded_on": 1558051200, | |
| "maturity_date": 1655251200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 5m 24d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1033678, | |
| "current_ytm": 7.72, | |
| "display_name": "Idfc Infra Debt Fund Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07079", | |
| "issue_size": null, | |
| "last_traded_on": 1503446400, | |
| "maturity_date": 1627344000, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1839, | |
| "ttm": " 7m 5d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1041950, | |
| "current_ytm": 7.715, | |
| "display_name": "Ongc Petro Additions Limited 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE163N08115", | |
| "issue_size": null, | |
| "last_traded_on": 1593043200, | |
| "maturity_date": 1741564800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1917, | |
| "ttm": "4y 2m 16d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1007000, | |
| "current_ytm": 7.71, | |
| "display_name": "Daimler Financial Services India Private Ltd 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE094O08136", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1631836800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 729, | |
| "ttm": " 8m 26d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1090000, | |
| "current_ytm": 7.71, | |
| "display_name": "East-North Interconnection Company Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07459", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1838073600, | |
| "rated_as_on": 1579564800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4452, | |
| "ttm": "7y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1011070, | |
| "current_ytm": 7.7, | |
| "display_name": "Aditya Birla Finance Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07EO4", | |
| "issue_size": null, | |
| "last_traded_on": 1503273600, | |
| "maturity_date": 1647561600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 2m 24d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 894400, | |
| "current_ytm": 7.7, | |
| "display_name": "Kotak Mahindra Investments Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE975F07GR2", | |
| "issue_size": null, | |
| "last_traded_on": 1587945600, | |
| "maturity_date": 1635379200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 897, | |
| "ttm": " 10m 6d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1019618, | |
| "current_ytm": 7.6975, | |
| "display_name": "Tata Capital Financial Services Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KR6", | |
| "issue_size": null, | |
| "last_traded_on": 1584057600, | |
| "maturity_date": 1645401600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 1m 30d" | |
| }, | |
| { | |
| "coupon": 8.53, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1021, | |
| "current_ytm": 7.69, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.53%", | |
| "face_value": 1000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774D08LS0", | |
| "issue_size": 12959000, | |
| "last_traded_on": 1597968000, | |
| "maturity_date": 1686009600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1006000, | |
| "current_ytm": 7.68, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IP6", | |
| "issue_size": null, | |
| "last_traded_on": 1585008000, | |
| "maturity_date": 1609804800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": " 14d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1055888, | |
| "current_ytm": 7.68, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07GO5", | |
| "issue_size": null, | |
| "last_traded_on": 1496102400, | |
| "maturity_date": 1618272000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 22d" | |
| }, | |
| { | |
| "coupon": 8.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1035807, | |
| "current_ytm": 7.68, | |
| "display_name": "State Bank Of Patiala Sr-I 8.29 Loa 22Jn25 Fvrs10Lac L.T.D 8.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE652A08015", | |
| "issue_size": null, | |
| "last_traded_on": 1482710400, | |
| "maturity_date": 1737504000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1312768.75, | |
| "current_ytm": 7.67, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HY2", | |
| "issue_size": null, | |
| "last_traded_on": 1559606400, | |
| "maturity_date": 1729468800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "3y 9m 29d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104294, | |
| "current_ytm": 7.67, | |
| "display_name": "Nhpc Limited 8.49%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07666", | |
| "issue_size": null, | |
| "last_traded_on": 1512432000, | |
| "maturity_date": 1732579200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.096542, | |
| "current_price": 1023720, | |
| "current_ytm": 7.67, | |
| "display_name": "Gail (India) Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE129A07214", | |
| "issue_size": null, | |
| "last_traded_on": 1562112000, | |
| "maturity_date": 1708646400, | |
| "rated_as_on": 1580083200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "3y 2m 1d" | |
| }, | |
| { | |
| "coupon": 8.71, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020362, | |
| "current_ytm": 7.67, | |
| "display_name": "Tata Capital Financial Services Limited 8.71%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KX4", | |
| "issue_size": null, | |
| "last_traded_on": 1578873600, | |
| "maturity_date": 1648166400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1094, | |
| "ttm": "1y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.096542, | |
| "current_price": 1027858, | |
| "current_ytm": 7.67, | |
| "display_name": "Gail (India) Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE129A07222", | |
| "issue_size": null, | |
| "last_traded_on": 1562112000, | |
| "maturity_date": 1740268800, | |
| "rated_as_on": 1580083200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 1d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 105622.9, | |
| "current_ytm": 7.66, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07773", | |
| "issue_size": null, | |
| "last_traded_on": 1569283200, | |
| "maturity_date": 1858809600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "7y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1090886, | |
| "current_ytm": 7.66, | |
| "display_name": "Export Import Bank Of India Sr-R-04 9.25 Bd 29My24 Fvrs10Lac L.T.D 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DS5", | |
| "issue_size": null, | |
| "last_traded_on": 1471824000, | |
| "maturity_date": 1716940800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 5m 7d" | |
| }, | |
| { | |
| "coupon": 7.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 964163, | |
| "current_ytm": 7.66, | |
| "display_name": "Power Finance Corporation Ltd 7.1%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08IP7", | |
| "issue_size": null, | |
| "last_traded_on": 1515456000, | |
| "maturity_date": 1799625600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 20d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1346575, | |
| "current_ytm": 7.66, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JY8", | |
| "issue_size": null, | |
| "last_traded_on": 1559174400, | |
| "maturity_date": 1751068800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "4y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1322145, | |
| "current_ytm": 7.66, | |
| "display_name": "Power Grid Corporation Of India Limited 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HZ9", | |
| "issue_size": null, | |
| "last_traded_on": 1559606400, | |
| "maturity_date": 1761004800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 9m 29d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 102055.6, | |
| "current_ytm": 7.66, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07708", | |
| "issue_size": null, | |
| "last_traded_on": 1553644800, | |
| "maturity_date": 1637884800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1030000, | |
| "current_ytm": 7.6598, | |
| "display_name": "Power Finance Corporation Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08CN5", | |
| "issue_size": null, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 1734220800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 11m 23d" | |
| }, | |
| { | |
| "coupon": 8.8538, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1037278, | |
| "current_ytm": 7.65, | |
| "display_name": "Bajaj Finance Limited 8.8538%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QT9", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1707177600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1819, | |
| "ttm": "3y 1m 15d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1090700, | |
| "current_ytm": 7.64, | |
| "display_name": "Aditya Birla Finance Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07GM3", | |
| "issue_size": null, | |
| "last_traded_on": 1598400000, | |
| "maturity_date": 1860969600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 29d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1108800, | |
| "current_ytm": 7.64, | |
| "display_name": "Indian Railway Finance Corporation\n8.83 Loa 14My33 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HF7", | |
| "issue_size": null, | |
| "last_traded_on": 1494201600, | |
| "maturity_date": 1999641600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8401, | |
| "ttm": "12y 4m 22d" | |
| }, | |
| { | |
| "coupon": 8.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1021425, | |
| "current_ytm": 7.64, | |
| "display_name": "Lic Housing Finance Limited 8.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KB2", | |
| "issue_size": null, | |
| "last_traded_on": 1476662400, | |
| "maturity_date": 1627344000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 7m 5d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1080113, | |
| "current_ytm": 7.64, | |
| "display_name": "Export Import Bank Of India Sr-R-16 8.83 Bd 03Nv29 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EE3", | |
| "issue_size": null, | |
| "last_traded_on": 1580688000, | |
| "maturity_date": 1888358400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 10m 12d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1053938, | |
| "current_ytm": 7.63, | |
| "display_name": "Tata Capital Housing Finance Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07AZ4", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1737590400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 1d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1072434, | |
| "current_ytm": 7.63, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07MX4", | |
| "issue_size": null, | |
| "last_traded_on": 1573603200, | |
| "maturity_date": 1723507200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 7m 22d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1034303, | |
| "current_ytm": 7.63, | |
| "display_name": "Lic Housing Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NO9", | |
| "issue_size": null, | |
| "last_traded_on": 1587945600, | |
| "maturity_date": 1701993600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "2y 11m 16d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1055953, | |
| "current_ytm": 7.62, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08238", | |
| "issue_size": null, | |
| "last_traded_on": 1492732800, | |
| "maturity_date": 1827360000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "6y 11m 6d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.243419, | |
| "current_price": 1027400, | |
| "current_ytm": 7.62, | |
| "display_name": "India Grid Trust Sr C 9.10 Loa 03Ju22 Fvrs10Lac L.T.D 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE219X07033", | |
| "issue_size": null, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1654214400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1095, | |
| "ttm": "1y 5m 12d" | |
| }, | |
| { | |
| "coupon": 8.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1020111, | |
| "current_ytm": 7.62, | |
| "display_name": "Export Import Bank Of India Sr-T-01 8.02 Bd 20Ap26 Fvrs10Lac L.T.D 8.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FB6", | |
| "issue_size": null, | |
| "last_traded_on": 1569456000, | |
| "maturity_date": 1776643200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 29d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1078782, | |
| "current_ytm": 7.6175, | |
| "display_name": "Sundaram Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08CA4", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1876003200, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 22d" | |
| }, | |
| { | |
| "coupon": 7.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1021886, | |
| "current_ytm": 7.61, | |
| "display_name": "Export Import Bank Of India Sr-U-05 7.88 Bd 11Jn33 Fvrs10Lac L.T.D 7.88%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1580256000, | |
| "maturity_date": 1989014400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1340993.75, | |
| "current_ytm": 7.61, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KM1", | |
| "issue_size": null, | |
| "last_traded_on": 1569369600, | |
| "maturity_date": 1823904000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 9m 27d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1038287, | |
| "current_ytm": 7.61, | |
| "display_name": "Lic Housing Finance Limited 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DS1", | |
| "issue_size": null, | |
| "last_traded_on": 1579737600, | |
| "maturity_date": 1680998400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 18d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1036779, | |
| "current_ytm": 7.61, | |
| "display_name": "Ntpc Limited 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KD0", | |
| "issue_size": null, | |
| "last_traded_on": 1573430400, | |
| "maturity_date": 1937606400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 5m 5d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1002700, | |
| "current_ytm": 7.6, | |
| "display_name": "Konkan Railway Corporation Limited 7.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE139F07105", | |
| "issue_size": null, | |
| "last_traded_on": 1562803200, | |
| "maturity_date": 1790035200, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m" | |
| }, | |
| { | |
| "coupon": 8.96, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1077700, | |
| "current_ytm": 7.6, | |
| "display_name": "Hdfc\n8.96 Ncd 09Ap25 Fvrs10Lac L.T.D 8.96%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07FJ7", | |
| "issue_size": null, | |
| "last_traded_on": 1499731200, | |
| "maturity_date": 1744156800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 3m 18d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1022600, | |
| "current_ytm": 7.6, | |
| "display_name": "Idfc Infrastructure Finance Limited 8.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07269", | |
| "issue_size": null, | |
| "last_traded_on": 1599782400, | |
| "maturity_date": 1692662400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1979, | |
| "ttm": "2y 8m" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 10878.76, | |
| "current_ytm": 7.59, | |
| "display_name": "Power Finance Corporation Ltd 8.3%", | |
| "face_value": 5000, | |
| "frequency": "At maturity", | |
| "isin": "INE134E07083", | |
| "issue_size": 1396675000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1617148800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1067621, | |
| "current_ytm": 7.58, | |
| "display_name": "Rec Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BL8", | |
| "issue_size": null, | |
| "last_traded_on": 1569888000, | |
| "maturity_date": 1867622400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 14d" | |
| }, | |
| { | |
| "coupon": 9.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1060603, | |
| "current_ytm": 7.58, | |
| "display_name": "Lic Housing Finance Limited 9.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07FJ5", | |
| "issue_size": null, | |
| "last_traded_on": 1585526400, | |
| "maturity_date": 1720137600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 6m 13d" | |
| }, | |
| { | |
| "coupon": 7.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1014840, | |
| "current_ytm": 7.58, | |
| "display_name": "Reliance Ports & Terminals Ltd 7.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE941D07166", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1794960000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 10m 27d" | |
| }, | |
| { | |
| "coupon": 7.66, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1002500, | |
| "current_ytm": 7.58, | |
| "display_name": "Bajaj Finance Limited 7.66%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QY9", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1733702400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1852, | |
| "ttm": "3y 11m 17d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1077700, | |
| "current_ytm": 7.57, | |
| "display_name": "Kudgi Transmission Limited 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07140", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1871769600, | |
| "rated_as_on": 1568592000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4408, | |
| "ttm": "8y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1068119, | |
| "current_ytm": 7.57, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07NB8", | |
| "issue_size": null, | |
| "last_traded_on": 1576108800, | |
| "maturity_date": 1724803200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 6d" | |
| }, | |
| { | |
| "coupon": 8.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1051.1, | |
| "current_ytm": 7.57, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.72%", | |
| "face_value": 1000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774D08LU6", | |
| "issue_size": 247349000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1995, | |
| "current_ytm": -7.57, | |
| "display_name": "National Highways Authority Of India 7.04%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EM2", | |
| "issue_size": 978807000, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1773014400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 15d" | |
| }, | |
| { | |
| "coupon": 8.7929, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1103491, | |
| "current_ytm": 7.5633, | |
| "display_name": "Power Finance Corporation Ltd 8.7929%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KA5", | |
| "issue_size": null, | |
| "last_traded_on": 1588636800, | |
| "maturity_date": 2029881600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "13y 4m 7d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10355890, | |
| "current_ytm": 7.56, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.32%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07OT8", | |
| "issue_size": null, | |
| "last_traded_on": 1587686400, | |
| "maturity_date": 1777852800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 12d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1035400, | |
| "current_ytm": 7.55, | |
| "display_name": "L&T Infrastructure Finance Company Limited 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07EO1", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1908835200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "9y 6m 6d" | |
| }, | |
| { | |
| "coupon": 7.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 995707, | |
| "current_ytm": 7.55, | |
| "display_name": "Icici Bank Limited 7.47%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08TY8", | |
| "issue_size": null, | |
| "last_traded_on": 1574380800, | |
| "maturity_date": 1813881600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "6y 6m 3d" | |
| }, | |
| { | |
| "coupon": 9.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1102000, | |
| "current_ytm": 7.55, | |
| "display_name": "L&T Metro Rail (Hyderabad) Limited 9.85%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE128M08037", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 2085091200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "15y 1m 6d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10389850, | |
| "current_ytm": 7.55, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.35%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07OX0", | |
| "issue_size": null, | |
| "last_traded_on": 1580860800, | |
| "maturity_date": 1778630400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 21d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1080.1, | |
| "current_ytm": 7.55, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.2%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SV1", | |
| "issue_size": 175480000, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1800230400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 27d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1048500, | |
| "current_ytm": 7.54, | |
| "display_name": "India Infradebt Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07455", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1704412800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1835, | |
| "ttm": "3y 14d" | |
| }, | |
| { | |
| "coupon": 8.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1032300, | |
| "current_ytm": 7.53, | |
| "display_name": "Export Import Bank Of India Sr-P-24 8.88 Bd 18Ot22 Fvrs10Lac L.T.D 8.88%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BS9", | |
| "issue_size": null, | |
| "last_traded_on": 1579564800, | |
| "maturity_date": 1666051200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 9m 26d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1045547, | |
| "current_ytm": 7.52, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MS4", | |
| "issue_size": null, | |
| "last_traded_on": 1563926400, | |
| "maturity_date": 1779840000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "5y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1011201, | |
| "current_ytm": 7.52, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NN3", | |
| "issue_size": null, | |
| "last_traded_on": 1554681600, | |
| "maturity_date": 1619308800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1050800, | |
| "current_ytm": 7.52, | |
| "display_name": "Sundaram Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BX8", | |
| "issue_size": null, | |
| "last_traded_on": 1601856000, | |
| "maturity_date": 1831852800, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "7y 28d" | |
| }, | |
| { | |
| "coupon": 9.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1328086.25, | |
| "current_ytm": 7.52, | |
| "display_name": "Power Grid Corporation Of India Limited 9.47%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07ET9", | |
| "issue_size": null, | |
| "last_traded_on": 1560211200, | |
| "maturity_date": 1680220800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "2y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1047000, | |
| "current_ytm": 7.52, | |
| "display_name": "Power Finance Corporation Ltd 8.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GK2", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1728345600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 16d" | |
| }, | |
| { | |
| "coupon": 7.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1025800, | |
| "current_ytm": 7.51, | |
| "display_name": "National Highways Authority Of India Series Ii 7.92 Bd 06Ju29 Fvrs10Lac L.T.D 7.92%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HE2", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1875398400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 15d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1389673.75, | |
| "current_ytm": 7.51, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1505952000, | |
| "maturity_date": 1782604800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "5y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1050488, | |
| "current_ytm": 7.51, | |
| "display_name": "Sundaram Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BV2", | |
| "issue_size": null, | |
| "last_traded_on": 1593129600, | |
| "maturity_date": 1809475200, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 4m 13d" | |
| }, | |
| { | |
| "coupon": 9.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.009908, | |
| "current_price": 1029500, | |
| "current_ytm": 7.51, | |
| "display_name": "Tata Sons Limited 9.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE895D08436", | |
| "issue_size": null, | |
| "last_traded_on": 1599091200, | |
| "maturity_date": 1650844800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1298497.5, | |
| "current_ytm": 7.5, | |
| "display_name": "Power Grid Corporation Of India Limited 8.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HL9", | |
| "issue_size": null, | |
| "last_traded_on": 1560211200, | |
| "maturity_date": 1688774400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "2y 6m 16d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1018.194, | |
| "current_ytm": 7.5, | |
| "display_name": "L&T Finance Ltd 8.7%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07AA4", | |
| "issue_size": 1109033000, | |
| "last_traded_on": 1597190400, | |
| "maturity_date": 1649980800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 3m 24d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 10918.82, | |
| "current_ytm": 7.5, | |
| "display_name": "State Bank Of India 9.75%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08033", | |
| "issue_size": 5594010000, | |
| "last_traded_on": 1456358400, | |
| "maturity_date": 1615852800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 22d" | |
| }, | |
| { | |
| "coupon": 9.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1066700, | |
| "current_ytm": 7.5, | |
| "display_name": "Tata Capital Financial Services Limited 9.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08045", | |
| "issue_size": null, | |
| "last_traded_on": 1594944000, | |
| "maturity_date": 1738195200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 8d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2516500, | |
| "current_ytm": 7.5, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.75%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07CU2", | |
| "issue_size": null, | |
| "last_traded_on": 1597104000, | |
| "maturity_date": 1618272000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 3m 22d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1002826, | |
| "current_ytm": 7.5, | |
| "display_name": "National Housing Bank 7.65 Loa 25Mr22 Fvrs10Lac L.T.D 7.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FF3", | |
| "issue_size": null, | |
| "last_traded_on": 1580342400, | |
| "maturity_date": 1648166400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1009800, | |
| "current_ytm": 7.49, | |
| "display_name": "Credila Financial Services Pvt. Ltd 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K07056", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1637798400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1855, | |
| "ttm": " 11m 3d" | |
| }, | |
| { | |
| "coupon": 10.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1037906, | |
| "current_ytm": 7.48, | |
| "display_name": "Sundaram Finance Limited 10.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BK5", | |
| "issue_size": null, | |
| "last_traded_on": 1578528000, | |
| "maturity_date": 1627516800, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 7m 7d" | |
| }, | |
| { | |
| "coupon": 8.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1039052, | |
| "current_ytm": 7.48, | |
| "display_name": "Lic Housing Finance Limited 8.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DT9", | |
| "issue_size": null, | |
| "last_traded_on": 1580688000, | |
| "maturity_date": 1682380800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1046761, | |
| "current_ytm": 7.48, | |
| "display_name": "Power Grid Corporation Of India Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MK1", | |
| "issue_size": null, | |
| "last_traded_on": 1577664000, | |
| "maturity_date": 1899244800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 2m 15d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10493750, | |
| "current_ytm": 7.48, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.46%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07PF4", | |
| "issue_size": null, | |
| "last_traded_on": 1575331200, | |
| "maturity_date": 1782259200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 2d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 5300, | |
| "current_ytm": 7.48, | |
| "display_name": "Power Finance Corporation Ltd 8.75%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07174", | |
| "issue_size": 32275000, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1795219200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 10m 30d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1366983.75, | |
| "current_ytm": 7.47, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JM3", | |
| "issue_size": null, | |
| "last_traded_on": 1579651200, | |
| "maturity_date": 1798243200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "6y 4d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1065377, | |
| "current_ytm": 7.47, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IT0", | |
| "issue_size": null, | |
| "last_traded_on": 1561593600, | |
| "maturity_date": 1693267200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "2y 8m 7d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1015600, | |
| "current_ytm": 7.46, | |
| "display_name": "India Infradebt Limited 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07364", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1720742400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "3y 6m 20d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 5045, | |
| "current_ytm": 7.46, | |
| "display_name": "Power Finance Corporation Ltd 8.5%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07158", | |
| "issue_size": 324375000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1637452800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 30d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1063300, | |
| "current_ytm": 7.46, | |
| "display_name": "Bajaj Finance Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08771", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1784073600, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 23d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1050600, | |
| "current_ytm": 7.46, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07GD8", | |
| "issue_size": null, | |
| "last_traded_on": 1510012800, | |
| "maturity_date": 1610928000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 27d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1019100, | |
| "current_ytm": 7.45, | |
| "display_name": "India Infradebt Limited 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07406", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1677542400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1832, | |
| "ttm": "2y 2m 6d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104640.8, | |
| "current_ytm": 7.44, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07351", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1707609600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "3y 1m 20d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1106040, | |
| "current_ytm": 7.44, | |
| "display_name": "Tata Cleantech Capital Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE857Q08016", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1873065600, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 4m 18d" | |
| }, | |
| { | |
| "coupon": 10.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1085100, | |
| "current_ytm": 7.44, | |
| "display_name": "L & T Finance Ltd 10.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE523E08NI6", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1711497600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 5d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1060900, | |
| "current_ytm": 7.44, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LK7", | |
| "issue_size": null, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1738281600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 1m 9d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1080500, | |
| "current_ytm": 7.44, | |
| "display_name": "Fullerton India Credit Company Ltd 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08694", | |
| "issue_size": null, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1777507200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3649, | |
| "ttm": "5y 4m 8d" | |
| }, | |
| { | |
| "coupon": 10.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1049483, | |
| "current_ytm": 7.435, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 10.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08KX2", | |
| "issue_size": null, | |
| "last_traded_on": 1581984000, | |
| "maturity_date": 1639353600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3654, | |
| "ttm": " 11m 21d" | |
| }, | |
| { | |
| "coupon": 9.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1087400, | |
| "current_ytm": 7.43, | |
| "display_name": "Family Credit Limited 9.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E08061", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1772582400, | |
| "rated_as_on": 1566345600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 10d" | |
| }, | |
| { | |
| "coupon": 7.71, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1003600, | |
| "current_ytm": 7.43, | |
| "display_name": "Kotak Mahindra Investments Limited 7.71%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE975F07GZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1585612800, | |
| "maturity_date": 1640044800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 729, | |
| "ttm": " 11m 29d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1052011, | |
| "current_ytm": 7.43, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NX2", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1934841600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1087800, | |
| "current_ytm": 7.4102, | |
| "display_name": "Tata Cleantech Capital Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE857Q08024", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1889222400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m 22d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1003982, | |
| "current_ytm": 7.41, | |
| "display_name": "Nhpc Limited 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AA3", | |
| "issue_size": null, | |
| "last_traded_on": 1585180800, | |
| "maturity_date": 1749168000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "4y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1082000, | |
| "current_ytm": 7.41, | |
| "display_name": "Hdb Financial Services Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08207", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": null, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": null, | |
| "ttm": null | |
| }, | |
| { | |
| "coupon": 7.74, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1031541, | |
| "current_ytm": 7.41, | |
| "display_name": "Export Import Bank Of India Sr-U-03 7.74 Bd 26My37 Fvrs10Lac L.T.D 7.74%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FO9", | |
| "issue_size": null, | |
| "last_traded_on": 1583193600, | |
| "maturity_date": 2126908800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "16y 5m 4d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1080300, | |
| "current_ytm": 7.41, | |
| "display_name": "Indian Renewable Energy Development Agency L. Sr-V B 8.49 Loa 10My28 Fvrs10Lac L.T.D 8.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07096", | |
| "issue_size": null, | |
| "last_traded_on": 1485993600, | |
| "maturity_date": 1841529600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 4m 18d" | |
| }, | |
| { | |
| "coupon": 8.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1100086, | |
| "current_ytm": 7.41, | |
| "display_name": "Export Import Bank Of India Sr-R-15 8.87 Bd 30Ot29 Fvrs10Lac L.T.D 8.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08ED5", | |
| "issue_size": null, | |
| "last_traded_on": 1574899200, | |
| "maturity_date": 1888012800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 10m 8d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1096000, | |
| "current_ytm": 7.4069, | |
| "display_name": "Hdb Financial Services Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08140", | |
| "issue_size": null, | |
| "last_traded_on": 1596499200, | |
| "maturity_date": 1848268800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 7m 5d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1078679, | |
| "current_ytm": 7.4, | |
| "display_name": "Nhpc Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AN6", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1865203200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 17d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1030000, | |
| "current_ytm": 7.4, | |
| "display_name": "Bank Of Baroda 7.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08166", | |
| "issue_size": null, | |
| "last_traded_on": 1589241600, | |
| "maturity_date": 2041545600, | |
| "rated_as_on": 1576022400, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 8m 20d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 997500, | |
| "current_ytm": 7.4, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-1A 7.38 Bd 20Ot31 Fvrs10Lac L.T.D 7.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08683", | |
| "issue_size": null, | |
| "last_traded_on": 1585526400, | |
| "maturity_date": 1950220800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 9m 28d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1397000, | |
| "current_ytm": 7.4, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1499817600, | |
| "maturity_date": 1717113600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "3y 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1030000, | |
| "current_ytm": 7.4, | |
| "display_name": "Power Grid Corporation Of India Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KN9", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1678665600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.110179, | |
| "current_price": 1062700, | |
| "current_ytm": 7.4, | |
| "display_name": "Axis Finance Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE891K08034", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1785888000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 14d" | |
| }, | |
| { | |
| "coupon": 8.0818, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1015563, | |
| "current_ytm": 7.4, | |
| "display_name": "Kotak Mahindra Prime Limited 8.0818%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7QF9", | |
| "issue_size": null, | |
| "last_traded_on": 1585872000, | |
| "maturity_date": 1672185600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1297, | |
| "ttm": "2y 6d" | |
| }, | |
| { | |
| "coupon": 8.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1065259, | |
| "current_ytm": 7.4, | |
| "display_name": "Nhpc Limited 8.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07922", | |
| "issue_size": null, | |
| "last_traded_on": 1504224000, | |
| "maturity_date": 1940284800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5468, | |
| "ttm": "10y 6m 5d" | |
| }, | |
| { | |
| "coupon": 7.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1002535, | |
| "current_ytm": 7.4, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 7.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07TH8", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1667779200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1095, | |
| "ttm": "1y 10m 16d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1084700, | |
| "current_ytm": 7.4, | |
| "display_name": "Food Corporation Of India 8.8 Loa 22Mr28 Fvrs10Lac L.T.D 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE861G08027", | |
| "issue_size": null, | |
| "last_traded_on": 1575331200, | |
| "maturity_date": 1837296000, | |
| "rated_as_on": 1575417600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m" | |
| }, | |
| { | |
| "coupon": 6.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 99010, | |
| "current_ytm": 7.4, | |
| "display_name": "Nhpc Limited 6.84%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07971", | |
| "issue_size": null, | |
| "last_traded_on": 1584662400, | |
| "maturity_date": 1642982400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 1m 2d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1014433, | |
| "current_ytm": 7.39, | |
| "display_name": "Rural Electrification Corporation Limited 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AT3", | |
| "issue_size": null, | |
| "last_traded_on": 1586908800, | |
| "maturity_date": 1677110400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 2m 1d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1303023.75, | |
| "current_ytm": 7.39, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JH3", | |
| "issue_size": null, | |
| "last_traded_on": 1558915200, | |
| "maturity_date": 1640476800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 4d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1015271, | |
| "current_ytm": 7.38, | |
| "display_name": "Power Finance Corporation Ltd 7.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JG4", | |
| "issue_size": null, | |
| "last_traded_on": 1581897600, | |
| "maturity_date": 1826841600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 11m" | |
| }, | |
| { | |
| "coupon": 8.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1046600, | |
| "current_ytm": 7.38, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-1 8.22 Bd 25Fb28 Fvrs10Lac L.T.D 8.22%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AA4", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1835049600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "7y 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1068300, | |
| "current_ytm": 7.38, | |
| "display_name": "Power Grid Corporation Of India Limited 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NL7", | |
| "issue_size": null, | |
| "last_traded_on": 1583971200, | |
| "maturity_date": 1924214400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 1d" | |
| }, | |
| { | |
| "coupon": 8.6308, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1014928, | |
| "current_ytm": 7.375, | |
| "display_name": "Kotak Mahindra Investments Limited 8.6308%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE975F07GQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1627516800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 811, | |
| "ttm": " 7m 7d" | |
| }, | |
| { | |
| "coupon": 8.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1043356, | |
| "current_ytm": 7.37, | |
| "display_name": "Rural Electrification Corporation Limited 8.09%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08AX5", | |
| "issue_size": null, | |
| "last_traded_on": 1580256000, | |
| "maturity_date": 1837209600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 2m 28d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1040405, | |
| "current_ytm": 7.37, | |
| "display_name": "Power Finance Corporation Ltd 8.84%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FJ6", | |
| "issue_size": null, | |
| "last_traded_on": 1577404800, | |
| "maturity_date": 1677888000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 10d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1073000, | |
| "current_ytm": 7.37, | |
| "display_name": "Tata Capital Housing Finance Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L08189", | |
| "issue_size": null, | |
| "last_traded_on": 1595980800, | |
| "maturity_date": 1745798400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 4m 6d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1012520, | |
| "current_ytm": 7.37, | |
| "display_name": "Power Finance Corporation Ltd 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08IT9", | |
| "issue_size": null, | |
| "last_traded_on": 1574640000, | |
| "maturity_date": 1803081600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 1m 29d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1019981, | |
| "current_ytm": 7.36, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-B-2 7.6 Bd 23Nv32 Fvrs10Lac L.T.D 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08931", | |
| "issue_size": null, | |
| "last_traded_on": 1562803200, | |
| "maturity_date": 1984780800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "11y 11m 1d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1114.25, | |
| "current_ytm": 7.36, | |
| "display_name": "L&T Finance Ltd 9.2%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07964", | |
| "issue_size": 80080000, | |
| "last_traded_on": 1595980800, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1082500, | |
| "current_ytm": 7.35, | |
| "display_name": "Rural Electrification Corporation Limited 8.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HV6", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1854835200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 9m 19d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1009080, | |
| "current_ytm": 7.35, | |
| "display_name": "Reliance Utilities And Power Private Limited 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE936D07166", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1687996800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2130, | |
| "ttm": "2y 6m 7d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1347000, | |
| "current_ytm": 7.35, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.8%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GD8", | |
| "issue_size": null, | |
| "last_traded_on": 1504742400, | |
| "maturity_date": 1727568000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 9m 7d" | |
| }, | |
| { | |
| "coupon": 7.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1007702, | |
| "current_ytm": 7.35, | |
| "display_name": "Reliance Utilities And Power Private Limited 7.67%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE936D07158", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1677542400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2009, | |
| "ttm": "2y 2m 6d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 10801, | |
| "current_ytm": 7.35, | |
| "display_name": "State Bank Of India 9.3%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08041", | |
| "issue_size": 1716770000, | |
| "last_traded_on": 1455753600, | |
| "maturity_date": 1615852800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 22d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1136000, | |
| "current_ytm": 7.35, | |
| "display_name": "Lic Housing Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE115A07NM3", | |
| "issue_size": null, | |
| "last_traded_on": 1576540800, | |
| "maturity_date": 1645747200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": "1y 2m 3d" | |
| }, | |
| { | |
| "coupon": 9.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1077809, | |
| "current_ytm": 7.34, | |
| "display_name": "Tata Capital Financial Services Limited 9.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08151", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1774828800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 8d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1049890, | |
| "current_ytm": 7.34, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08212", | |
| "issue_size": null, | |
| "last_traded_on": 1579651200, | |
| "maturity_date": 1764288000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "4y 11m 6d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1114854, | |
| "current_ytm": 7.34, | |
| "display_name": "Tata Capital Financial Services Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KL9", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1860796800, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 27d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 102221.8, | |
| "current_ytm": 7.33, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07815", | |
| "issue_size": null, | |
| "last_traded_on": 1559606400, | |
| "maturity_date": 1626220800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": " 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 107246.9, | |
| "current_ytm": 7.33, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07377", | |
| "issue_size": null, | |
| "last_traded_on": 1578441600, | |
| "maturity_date": 1770768000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "5y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1071000, | |
| "current_ytm": 7.33, | |
| "display_name": "Bajaj Finance Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08789", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1784592000, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 29d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1085652, | |
| "current_ytm": 7.33, | |
| "display_name": "Tata Capital Financial Services Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LF9", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1876608000, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 29d" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1293350, | |
| "current_ytm": 7.33, | |
| "display_name": "Power Grid Corporation Of India Limited 8.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HK1", | |
| "issue_size": null, | |
| "last_traded_on": 1561420800, | |
| "maturity_date": 1657238400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "1y 6m 16d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1325961.25, | |
| "current_ytm": 7.33, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07BB3", | |
| "issue_size": null, | |
| "last_traded_on": 1509580800, | |
| "maturity_date": 1627084800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 7m 2d" | |
| }, | |
| { | |
| "coupon": 9.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1287900, | |
| "current_ytm": 7.33, | |
| "display_name": "Mahindra And Mahindra Limited 9.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE101A08070", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 2950732800, | |
| "rated_as_on": 1569801600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 18262, | |
| "ttm": "42y 6m 12d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 10899.83, | |
| "current_ytm": 7.32, | |
| "display_name": "State Bank Of India 9.45%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08066", | |
| "issue_size": 8283230000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1773619200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 2m 22d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 521641, | |
| "current_ytm": 7.32, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.4%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07NJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1583193600, | |
| "maturity_date": 1737590400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 1d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1093500, | |
| "current_ytm": 7.32, | |
| "display_name": "Hdb Financial Services Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08181", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1875484800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 16d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 84010, | |
| "current_ytm": 7.32, | |
| "display_name": "Icici Limited ", | |
| "face_value": 100000, | |
| "frequency": "At maturity", | |
| "isin": "INE005A11341", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1682899200, | |
| "rated_as_on": 1577750400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8138, | |
| "ttm": "2y 4m 9d" | |
| }, | |
| { | |
| "coupon": 9.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1079169, | |
| "current_ytm": 7.32, | |
| "display_name": "Lic Housing Finance Limited 9.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07AT5", | |
| "issue_size": null, | |
| "last_traded_on": 1504137600, | |
| "maturity_date": 1623024000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 16d" | |
| }, | |
| { | |
| "coupon": 9.76, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1144400, | |
| "current_ytm": 7.31, | |
| "display_name": "Aditya Birla Finance Limited 9.76%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08EA1", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1859500800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 12d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2514575, | |
| "current_ytm": 7.3, | |
| "display_name": "L & T Infrastructure Finance Company Limited 7.65%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07ED4", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1661817600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 8m 8d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1003608, | |
| "current_ytm": 7.3, | |
| "display_name": "Bajaj Finance Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07NE8", | |
| "issue_size": null, | |
| "last_traded_on": 1587945600, | |
| "maturity_date": 1638230400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 8d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1085500, | |
| "current_ytm": 7.3, | |
| "display_name": "Tata Capital Financial Services Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08359", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1889222400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m 22d" | |
| }, | |
| { | |
| "coupon": 9.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1136317, | |
| "current_ytm": 7.3, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.33%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HP6", | |
| "issue_size": null, | |
| "last_traded_on": 1482364800, | |
| "maturity_date": 1778371200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 4m 18d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1053813, | |
| "current_ytm": 7.3, | |
| "display_name": "Bajaj Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08805", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1790640000, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m 7d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1392411.25, | |
| "current_ytm": 7.3, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IL7", | |
| "issue_size": null, | |
| "last_traded_on": 1581465600, | |
| "maturity_date": 1780185600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1048476, | |
| "current_ytm": 7.29, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MR6", | |
| "issue_size": null, | |
| "last_traded_on": 1576108800, | |
| "maturity_date": 1748304000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1052127, | |
| "current_ytm": 7.29, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08287", | |
| "issue_size": null, | |
| "last_traded_on": 1578268800, | |
| "maturity_date": 1837555200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "7y 3m 3d" | |
| }, | |
| { | |
| "coupon": 9.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1071200, | |
| "current_ytm": 7.29, | |
| "display_name": "Tata Capital Housing Finance Limited 9.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07AU5", | |
| "issue_size": null, | |
| "last_traded_on": 1593129600, | |
| "maturity_date": 1733702400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 17d" | |
| }, | |
| { | |
| "coupon": 7.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1004400, | |
| "current_ytm": 7.29, | |
| "display_name": "Icici Bank Ltd 7.8%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE090A08HI6", | |
| "issue_size": null, | |
| "last_traded_on": 1580860800, | |
| "maturity_date": 1609286400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 8d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1050864, | |
| "current_ytm": 7.29, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07ND4", | |
| "issue_size": null, | |
| "last_traded_on": 1576108800, | |
| "maturity_date": 1757808000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 8m 23d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1099.7, | |
| "current_ytm": 7.28, | |
| "display_name": "Tata Capital Financial Services Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08284", | |
| "issue_size": 295490000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1853625600, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 5d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1323953.75, | |
| "current_ytm": 7.28, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JI1", | |
| "issue_size": null, | |
| "last_traded_on": 1561075200, | |
| "maturity_date": 1672012800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "2y 4d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1056660, | |
| "current_ytm": 7.28, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE206D08295", | |
| "issue_size": null, | |
| "last_traded_on": 1578268800, | |
| "maturity_date": 1869091200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "8y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1078022, | |
| "current_ytm": 7.28, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08253", | |
| "issue_size": null, | |
| "last_traded_on": 1580428800, | |
| "maturity_date": 1890518400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 11m 6d" | |
| }, | |
| { | |
| "coupon": 10.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1207500, | |
| "current_ytm": 7.28, | |
| "display_name": "Air India Limited 10.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE954K08030", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1948233600, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "10y 9m 5d" | |
| }, | |
| { | |
| "coupon": 9.81, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1103400, | |
| "current_ytm": 7.28, | |
| "display_name": "L&T Metro Rail (Hyderabad) Limited 9.81%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE128M08011", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 2065737600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 5m 27d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1049100, | |
| "current_ytm": 7.28, | |
| "display_name": "Niif Infrastructure Finance Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07392", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1740096000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1887, | |
| "ttm": "4y 1m 30d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1052764, | |
| "current_ytm": 7.27, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08378", | |
| "issue_size": null, | |
| "last_traded_on": 1578355200, | |
| "maturity_date": 1837814400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "7y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1061643, | |
| "current_ytm": 7.27, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08394", | |
| "issue_size": null, | |
| "last_traded_on": 1578355200, | |
| "maturity_date": 1900886400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "9y 3m 6d" | |
| }, | |
| { | |
| "coupon": 9.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1120200, | |
| "current_ytm": 7.27, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 9.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E08045", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1866412800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m" | |
| }, | |
| { | |
| "coupon": 9.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1077000, | |
| "current_ytm": 7.27, | |
| "display_name": "Export Import Bank Of India Sr-Q-27 9.57 Bd 10Jn24 Fvrs10Lac L.T.D 9.57%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DK2", | |
| "issue_size": null, | |
| "last_traded_on": 1579219200, | |
| "maturity_date": 1704844800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 19d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1047953, | |
| "current_ytm": 7.27, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08360", | |
| "issue_size": null, | |
| "last_traded_on": 1578355200, | |
| "maturity_date": 1806192000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "6y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1047426, | |
| "current_ytm": 7.27, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE206D08279", | |
| "issue_size": null, | |
| "last_traded_on": 1577923200, | |
| "maturity_date": 1805932800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "6y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1057362, | |
| "current_ytm": 7.27, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08386", | |
| "issue_size": null, | |
| "last_traded_on": 1578355200, | |
| "maturity_date": 1869350400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "8y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1044778, | |
| "current_ytm": 7.2656, | |
| "display_name": "Bajaj Finance Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08847", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1813622400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 6m" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 1, | |
| "current_price": 1011623, | |
| "current_ytm": 7.26, | |
| "display_name": "Grasim Industries Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE047A08158", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1717459200, | |
| "rated_as_on": 1582502400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 13d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1065630, | |
| "current_ytm": 7.26, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08402", | |
| "issue_size": null, | |
| "last_traded_on": 1578355200, | |
| "maturity_date": 1932422400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.59, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1016800, | |
| "current_ytm": 7.25, | |
| "display_name": "Thdc India Limited 7.59%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE812V07013", | |
| "issue_size": null, | |
| "last_traded_on": 1587600000, | |
| "maturity_date": 1790985600, | |
| "rated_as_on": 1580774400, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m 11d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2692500, | |
| "current_ytm": 7.25, | |
| "display_name": "L&T Infra Debt Fund Limited 9.7%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07035", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1717977600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 5m 19d" | |
| }, | |
| { | |
| "coupon": 9.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1065000, | |
| "current_ytm": 7.25, | |
| "display_name": "Vijaya Bank 9.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE705A08029", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1703289600, | |
| "rated_as_on": 1562112000, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 1d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1126800, | |
| "current_ytm": 7.25, | |
| "display_name": "Power Finance Corporation Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1923523200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "9y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1016700, | |
| "current_ytm": 7.24, | |
| "display_name": "Lic Housing Finance Limited 7.56%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MC6", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1812931200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 23d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1058903, | |
| "current_ytm": 7.23, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NV6", | |
| "issue_size": null, | |
| "last_traded_on": 1581033600, | |
| "maturity_date": 1871769600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "8y 4m 3d" | |
| }, | |
| { | |
| "coupon": 7.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1009494, | |
| "current_ytm": 7.23, | |
| "display_name": "Idfc Infrastructure Finance Limited 7.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07228", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1668038400, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1878, | |
| "ttm": "1y 10m 19d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1054115, | |
| "current_ytm": 7.23, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NU8", | |
| "issue_size": null, | |
| "last_traded_on": 1581033600, | |
| "maturity_date": 1840233600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "7y 4m 3d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1020000, | |
| "current_ytm": 7.23, | |
| "display_name": "Ntpc Limited 7.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KG3", | |
| "issue_size": null, | |
| "last_traded_on": 1590537600, | |
| "maturity_date": 1951776000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 10m 16d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1128200, | |
| "current_ytm": 7.23, | |
| "display_name": "Indian Railway Finance Corporation\n8.8 Loa 03Fb30 Fvrs10Lac L.T.D 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GR4", | |
| "issue_size": null, | |
| "last_traded_on": 1501459200, | |
| "maturity_date": 1896307200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "9y 1m 12d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1068300, | |
| "current_ytm": 7.23, | |
| "display_name": "Konkan Railway Corporation Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE139F07048", | |
| "issue_size": null, | |
| "last_traded_on": 1589414400, | |
| "maturity_date": 1721520000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 6m 29d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1051000, | |
| "current_ytm": 7.22, | |
| "display_name": "Canara Bank 8.4 Loa 27Ap26 Fvrs10Lac L.T.D 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476A08050", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1777248000, | |
| "rated_as_on": 1575417600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 5d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1107100, | |
| "current_ytm": 7.22, | |
| "display_name": "Aditya Birla Finance Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H08EB9", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1875398400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 15d" | |
| }, | |
| { | |
| "coupon": 7.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1015253, | |
| "current_ytm": 7.22, | |
| "display_name": "Ultratech Cement Limited 7.64%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G08065", | |
| "issue_size": null, | |
| "last_traded_on": 1578268800, | |
| "maturity_date": 1717459200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 13d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1003784, | |
| "current_ytm": 7.22, | |
| "display_name": "Aditya Birla Housing Finance Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R07177", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1627603200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1459, | |
| "ttm": " 7m 8d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1047200, | |
| "current_ytm": 7.215, | |
| "display_name": "Hdfc Credila Financial Services Private Limited 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K08161", | |
| "issue_size": null, | |
| "last_traded_on": 1604275200, | |
| "maturity_date": 1826323200, | |
| "rated_as_on": 1580860800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 10m 25d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1013637, | |
| "current_ytm": 7.21, | |
| "display_name": "Aditya Birla Housing Finance Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE831R07169", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1654560000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 5m 16d" | |
| }, | |
| { | |
| "coupon": 9.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1103800, | |
| "current_ytm": 7.21, | |
| "display_name": "Power Finance Corporation Ltd 9.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DS2", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1785542400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 7m 10d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1040455, | |
| "current_ytm": 7.21, | |
| "display_name": "Lic Housing Finance Limited 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07BY3", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1643500800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 1m 8d" | |
| }, | |
| { | |
| "coupon": 8.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1057800, | |
| "current_ytm": 7.2, | |
| "display_name": "Lic Housing Finance Limited 8.47%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JQ2", | |
| "issue_size": null, | |
| "last_traded_on": 1601856000, | |
| "maturity_date": 1781481600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 24d" | |
| }, | |
| { | |
| "coupon": 7.7937, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1008149, | |
| "current_ytm": 7.2, | |
| "display_name": "Aditya Birla Finance Limited 7.7937%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07FO1", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1646006400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1523, | |
| "ttm": "1y 2m 6d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1049799, | |
| "current_ytm": 7.2, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NT0", | |
| "issue_size": null, | |
| "last_traded_on": 1586995200, | |
| "maturity_date": 1808611200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "6y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1117500, | |
| "current_ytm": 7.19, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr- Ltif C2 8.47 Bd 31Ag33 Fvrs10Lac L.T.D 8.47%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AO5", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 2009059200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 8m 9d" | |
| }, | |
| { | |
| "coupon": 8.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 1, | |
| "current_price": 1039331, | |
| "current_ytm": 7.1861, | |
| "display_name": "Mahanagar Telephone Nigam Limited 8.57%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE153A08014", | |
| "issue_size": null, | |
| "last_traded_on": 1586995200, | |
| "maturity_date": 1679961600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1007000, | |
| "current_ytm": 7.18, | |
| "display_name": "Lic Housing Finance Limited 7.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07ML7", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1725580800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "3y 8m 15d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1074275, | |
| "current_ytm": 7.18, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GV6", | |
| "issue_size": null, | |
| "last_traded_on": 1581379200, | |
| "maturity_date": 1741564800, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 2m 16d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1044580, | |
| "current_ytm": 7.18, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09EN8", | |
| "issue_size": null, | |
| "last_traded_on": 1579564800, | |
| "maturity_date": 1654560000, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "1y 5m 16d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1077400, | |
| "current_ytm": 7.17, | |
| "display_name": "India Infradebt Limited 9.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07026", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1716854400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 5m 6d" | |
| }, | |
| { | |
| "coupon": 10.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1161090, | |
| "current_ytm": 7.17, | |
| "display_name": "Indian Railway Finance Corporation\n10.04 Loa 07Ju27 Fvrs10Lac L.T.D 10.04%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09EO6", | |
| "issue_size": null, | |
| "last_traded_on": 1581638400, | |
| "maturity_date": 1812326400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "6y 5m 16d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1051.71, | |
| "current_ytm": 7.17, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.1%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE033L07GS6", | |
| "issue_size": 382776000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1831420800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "7y 23d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1151100, | |
| "current_ytm": 7.17, | |
| "display_name": "Hdb Financial Services Limited 9.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08173", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1857859200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 24d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1100575, | |
| "current_ytm": 7.17, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Ltif C4 8.32 Bd 10Mr34 Fvrs10Lac L.T.D 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BD6", | |
| "issue_size": null, | |
| "last_traded_on": 1581465600, | |
| "maturity_date": 2025561600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "13y 2m 16d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1068461, | |
| "current_ytm": 7.16, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NW4", | |
| "issue_size": null, | |
| "last_traded_on": 1581984000, | |
| "maturity_date": 1903305600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "9y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.97, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1109700, | |
| "current_ytm": 7.16, | |
| "display_name": "Lic Housing Finance Limited 8.97%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NL5", | |
| "issue_size": null, | |
| "last_traded_on": 1597708800, | |
| "maturity_date": 1858032000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 10m 26d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1027235, | |
| "current_ytm": 7.15, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07EH5", | |
| "issue_size": null, | |
| "last_traded_on": 1599782400, | |
| "maturity_date": 1669680000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 11m 7d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.110179, | |
| "current_price": 1209600, | |
| "current_ytm": 7.15, | |
| "display_name": "Axis Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE891K07416", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1650326400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1394, | |
| "ttm": "1y 3m 28d" | |
| }, | |
| { | |
| "coupon": 7.5612, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1009243, | |
| "current_ytm": 7.15, | |
| "display_name": "Kotak Mahindra Prime Limited 7.5612%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7QL7", | |
| "issue_size": null, | |
| "last_traded_on": 1587513600, | |
| "maturity_date": 1674777600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1109, | |
| "ttm": "2y 1m 5d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1183100, | |
| "current_ytm": 7.14, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE774D07SQ1", | |
| "issue_size": null, | |
| "last_traded_on": 1590710400, | |
| "maturity_date": 1648512000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1203, | |
| "ttm": "1y 3m 7d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1074400, | |
| "current_ytm": 7.12, | |
| "display_name": "Power Grid Corporation Of India Limited 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MH7", | |
| "issue_size": null, | |
| "last_traded_on": 1585872000, | |
| "maturity_date": 1895356800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 1m 1d" | |
| }, | |
| { | |
| "coupon": 9.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1081200, | |
| "current_ytm": 7.12, | |
| "display_name": "Ireda\n9.02 Bd 24Sp25 Fvrs10Lac L.T.D 9.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07062", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1758672000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 9m 2d" | |
| }, | |
| { | |
| "coupon": 8.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1082300, | |
| "current_ytm": 7.12, | |
| "display_name": "Tata Capital Financial Services Limited 8.92%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08193", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1786406400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 7m 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104879, | |
| "current_ytm": 7.11, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07328", | |
| "issue_size": null, | |
| "last_traded_on": 1511222400, | |
| "maturity_date": 1613001600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": " 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1038, | |
| "current_ytm": 7.11, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08LY8", | |
| "issue_size": 36375000, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1686009600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1049300, | |
| "current_ytm": 7.11, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H09095", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1730592000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 10m 12d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1103432, | |
| "current_ytm": 7.105, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE031A08616", | |
| "issue_size": null, | |
| "last_traded_on": 1583280000, | |
| "maturity_date": 1857600000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 105135.2, | |
| "current_ytm": 7.1, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07724", | |
| "issue_size": null, | |
| "last_traded_on": 1566345600, | |
| "maturity_date": 1700956800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "2y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1118555, | |
| "current_ytm": 7.1, | |
| "display_name": "Gujarat Road And Infrastructure Co Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE354H07155", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1869609600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4735, | |
| "ttm": "8y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1061480, | |
| "current_ytm": 7.1, | |
| "display_name": "Lic Housing Finance Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07HU8", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1755129600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "4y 7m 23d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1123678, | |
| "current_ytm": 7.1, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MD6", | |
| "issue_size": null, | |
| "last_traded_on": 1587427200, | |
| "maturity_date": 1887148800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1114800, | |
| "current_ytm": 7.1, | |
| "display_name": "Power Finance Corporation Ltd 8.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JZ4", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1869350400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1023.01, | |
| "current_ytm": 7.1, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 7.85%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08MI9", | |
| "issue_size": 93224000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1721779200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "3y 7m 2d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1108761, | |
| "current_ytm": 7.1, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-B5 8.28 Bd 01Mr33 Fvrs10Lac L.T.D 8.28%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AB2", | |
| "issue_size": null, | |
| "last_traded_on": 1587600000, | |
| "maturity_date": 1993248000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 2m 7d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1055606, | |
| "current_ytm": 7.1, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BR9", | |
| "issue_size": null, | |
| "last_traded_on": 1587513600, | |
| "maturity_date": 1875916800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 21d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1044500, | |
| "current_ytm": 7.0908, | |
| "display_name": "India Infradebt Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE537P07489", | |
| "issue_size": null, | |
| "last_traded_on": 1603929600, | |
| "maturity_date": 1732060800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 10m 29d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1108300, | |
| "current_ytm": 7.09, | |
| "display_name": "Rec Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BQ7", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1870992000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 25d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1108900, | |
| "current_ytm": 7.09, | |
| "display_name": "Power Finance Corporation Ltd 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JQ3", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1854748800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 18d" | |
| }, | |
| { | |
| "coupon": 9.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1078456, | |
| "current_ytm": 7.09, | |
| "display_name": "Lic Housing Finance Limited 9.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07FW8", | |
| "issue_size": null, | |
| "last_traded_on": 1590019200, | |
| "maturity_date": 1727654400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1078365, | |
| "current_ytm": 7.09, | |
| "display_name": "Lic Housing Finance Limited 9.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07FY4", | |
| "issue_size": null, | |
| "last_traded_on": 1590019200, | |
| "maturity_date": 1729036800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 24d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1039400, | |
| "current_ytm": 7.09, | |
| "display_name": "Power Finance Corporation Ltd 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GY3", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1741564800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 16d" | |
| }, | |
| { | |
| "coupon": 9.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1082323, | |
| "current_ytm": 7.08, | |
| "display_name": "Lic Housing Finance Limited 9.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07FP2", | |
| "issue_size": null, | |
| "last_traded_on": 1590019200, | |
| "maturity_date": 1724371200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 8m 1d" | |
| }, | |
| { | |
| "coupon": 9.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.009908, | |
| "current_price": 1037000, | |
| "current_ytm": 7.08, | |
| "display_name": "Tata Sons Limited 9.69%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE895D08451", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1654992000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 5m 21d" | |
| }, | |
| { | |
| "coupon": 7.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1109095, | |
| "current_ytm": 7.08, | |
| "display_name": "National Highways Authority Of India Sr Vii 7.98 Bd 23Dc49 Fvrs10Lac L.T.D 7.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 2523830400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 10958, | |
| "ttm": "29y 1d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1339053.75, | |
| "current_ytm": 7.07, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KJ7", | |
| "issue_size": null, | |
| "last_traded_on": 1576108800, | |
| "maturity_date": 1729296000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "3y 9m 27d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1088311, | |
| "current_ytm": 7.07, | |
| "display_name": "Rural Electrification Corporation Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BA1", | |
| "issue_size": null, | |
| "last_traded_on": 1594166400, | |
| "maturity_date": 1849392000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 7m 18d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1103358, | |
| "current_ytm": 7.07, | |
| "display_name": "Lic Housing Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NP6", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1859846400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 11m 16d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1089800, | |
| "current_ytm": 7.06, | |
| "display_name": "Credila Financial Services Private Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K08146", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1759968000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 17d" | |
| }, | |
| { | |
| "coupon": 8.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1022314, | |
| "current_ytm": 7.06, | |
| "display_name": "Power Finance Corporation Ltd 8.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DL7", | |
| "issue_size": null, | |
| "last_traded_on": 1571356800, | |
| "maturity_date": 1610668800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3654, | |
| "ttm": " 24d" | |
| }, | |
| { | |
| "coupon": 8.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1098477, | |
| "current_ytm": 7.06, | |
| "display_name": "Power Finance Corporation Ltd 8.67%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08JR1", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1858118400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "7y 10m 27d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1075699, | |
| "current_ytm": 7.06, | |
| "display_name": "Export Import Bank Of India Sr-R-21 8.15 Bd 21Jn30 Fvrs10Lac L.T.D 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EJ2", | |
| "issue_size": null, | |
| "last_traded_on": 1583366400, | |
| "maturity_date": 1895184000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 30d" | |
| }, | |
| { | |
| "coupon": 9.26, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1056800, | |
| "current_ytm": 7.06, | |
| "display_name": "Power Finance Corporation Ltd 9.26%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08EH3", | |
| "issue_size": null, | |
| "last_traded_on": 1588636800, | |
| "maturity_date": 1681516800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4057, | |
| "ttm": "2y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 106232, | |
| "current_ytm": 7.05, | |
| "display_name": "Nhpc Limited 8.7%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE848E07260", | |
| "issue_size": null, | |
| "last_traded_on": 1566518400, | |
| "maturity_date": 1707609600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "3y 1m 20d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1016007, | |
| "current_ytm": 7.05, | |
| "display_name": "Nuclear Power Corporation Of India Limited 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08451", | |
| "issue_size": null, | |
| "last_traded_on": 1582675200, | |
| "maturity_date": 1955059200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1014061, | |
| "current_ytm": 7.05, | |
| "display_name": "Nuclear Power Corporation Of India Limited 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08436", | |
| "issue_size": null, | |
| "last_traded_on": 1582675200, | |
| "maturity_date": 1891987200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "8y 11m 23d" | |
| }, | |
| { | |
| "coupon": 8.81, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2565750, | |
| "current_ytm": 7.05, | |
| "display_name": "L & T Infrastructure Finance Company Limited 8.81%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE691I07AQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1653523200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 5m 4d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 5312.33, | |
| "current_ytm": 7.05, | |
| "display_name": "Power Finance Corporation Ltd 8.5%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07091", | |
| "issue_size": 61355000, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1774915200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 3m 9d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1011935, | |
| "current_ytm": 7.05, | |
| "display_name": "Nuclear Power Corporation Of India Limited 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08410", | |
| "issue_size": null, | |
| "last_traded_on": 1582675200, | |
| "maturity_date": 1828828800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "6y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1012982, | |
| "current_ytm": 7.05, | |
| "display_name": "Nuclear Power Corporation Of India Limited 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08428", | |
| "issue_size": null, | |
| "last_traded_on": 1582675200, | |
| "maturity_date": 1860451200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "7y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.78, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1063600, | |
| "current_ytm": 7.0481, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Ltif 4C 7.78 Loa 20Dc34 Fvrs10Lac L.T.D 7.78%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BT2", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 2050185600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 11m 28d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1070655, | |
| "current_ytm": 7.04, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BS7", | |
| "issue_size": null, | |
| "last_traded_on": 1589328000, | |
| "maturity_date": 2035324800, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 6m 9d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 2645500, | |
| "current_ytm": 7.04, | |
| "display_name": "L&T Infra Debt Fund Limited 8.3%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE235P07555", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1792454400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m 28d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1330791.25, | |
| "current_ytm": 7.03, | |
| "display_name": "Power Grid Corporation Of India Limited 9.2%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FQ2", | |
| "issue_size": null, | |
| "last_traded_on": 1569369600, | |
| "maturity_date": 1678579200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "2y 2m 18d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1046300, | |
| "current_ytm": 7.03, | |
| "display_name": "Power Finance Corporation Ltd 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08JP5", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1838332800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 3m 12d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1027374, | |
| "current_ytm": 7.03, | |
| "display_name": "Power Grid Corporation Of India Limited 7.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08585", | |
| "issue_size": null, | |
| "last_traded_on": 1583452800, | |
| "maturity_date": 2036534400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 6m 23d" | |
| }, | |
| { | |
| "coupon": 9.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1037700, | |
| "current_ytm": 7.03, | |
| "display_name": "Export Import Bank Of India Sr-P-20 9.04 Bd 21Sp22 Fvrs10Lac L.T.D 9.04%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BO8", | |
| "issue_size": null, | |
| "last_traded_on": 1597968000, | |
| "maturity_date": 1663718400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m 30d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1085001, | |
| "current_ytm": 7.03, | |
| "display_name": "Bank Of Baroda Series Xix 8.40 Bd 20Dc28 Fvrs10Lac L.T.D 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08133", | |
| "issue_size": null, | |
| "last_traded_on": 1594166400, | |
| "maturity_date": 1860883200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 28d" | |
| }, | |
| { | |
| "coupon": 8.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1072500, | |
| "current_ytm": 7.02, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Pmay-G Pb-2 8.22 Ncd 13Dc28 Fvrs10Lac L.T.D 8.22%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AV0", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1860278400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 21d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1064500, | |
| "current_ytm": 7.02, | |
| "display_name": "Lic Housing Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JM1", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1779408000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "5y 5m" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 106473.4, | |
| "current_ytm": 7.02, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07443", | |
| "issue_size": null, | |
| "last_traded_on": 1568332800, | |
| "maturity_date": 1707609600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "3y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1068200, | |
| "current_ytm": 7.01, | |
| "display_name": "Power Finance Corporation Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08CS4", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1741996800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 2m 21d" | |
| }, | |
| { | |
| "coupon": 7.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1029818, | |
| "current_ytm": 7.01, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AD1", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1824940800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 10m 9d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10680050, | |
| "current_ytm": 7.01, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.45%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07OY8", | |
| "issue_size": null, | |
| "last_traded_on": 1592179200, | |
| "maturity_date": 1779062400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 26d" | |
| }, | |
| { | |
| "coupon": 9.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1077600, | |
| "current_ytm": 7.01, | |
| "display_name": "Power Finance Corporation Ltd 9.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GD7", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1724025600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 7m 28d" | |
| }, | |
| { | |
| "coupon": 8.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1095465, | |
| "current_ytm": 7, | |
| "display_name": "Damodar Valley Corporation Sr-15 8.69 Loa 25Mr28 Fvrs10Lac L.T.D 8.69%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE753F08028", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1837555200, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1071100, | |
| "current_ytm": 7, | |
| "display_name": "Rural Electrification Corp\n8.75 Bd 08Ju25 Fvrs10Lac L.T.D 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08427", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1749340800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 5m 17d" | |
| }, | |
| { | |
| "coupon": 7.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.579744, | |
| "current_price": 1055200, | |
| "current_ytm": 7, | |
| "display_name": "Bank Of Baroda Series Xxiv 7.84 Bd 15Jn35 Fvrs10Lac L.T.D 7.84%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE028A08208", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 2052432000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "14y 24d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 992600, | |
| "current_ytm": 7, | |
| "display_name": "Kotak Mahindra Investments Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE975F07GK7", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1611878400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 676, | |
| "ttm": " 1m 7d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 105331.3, | |
| "current_ytm": 7, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07435", | |
| "issue_size": null, | |
| "last_traded_on": 1566259200, | |
| "maturity_date": 1676073600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 20d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1136000, | |
| "current_ytm": 7, | |
| "display_name": "Nuclear Power Corporation Of India Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08162", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1863820800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m 1d" | |
| }, | |
| { | |
| "coupon": 9.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.383284, | |
| "current_price": 1153300, | |
| "current_ytm": 7, | |
| "display_name": "Sbi Cards & Payment Services Private Limited 9.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018E08144", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1864339200, | |
| "rated_as_on": 1581984000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 7d" | |
| }, | |
| { | |
| "coupon": 7.96, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1064900, | |
| "current_ytm": 6.9941, | |
| "display_name": "Rural Electrification Corporation Limited 7.96%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CX1", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1907712000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3659, | |
| "ttm": "9y 5m 24d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1056414, | |
| "current_ytm": 6.9925, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr G D1 7.50 Loa 17Nv34 Fvrs10Lac L.T.D 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BR6", | |
| "issue_size": null, | |
| "last_traded_on": 1589500800, | |
| "maturity_date": 2047334400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "13y 10m 26d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1037940, | |
| "current_ytm": 6.99, | |
| "display_name": "Rural Electrification Corporation Limited 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AQ9", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1828396800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "6y 11m 18d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1049602, | |
| "current_ytm": 6.98, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NR4", | |
| "issue_size": null, | |
| "last_traded_on": 1578441600, | |
| "maturity_date": 1745539200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "4y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1168003, | |
| "current_ytm": 6.98, | |
| "display_name": "Indian Railway Finance Corporation\n8.83 Loa 14My35 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HH3", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 2062713600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 9131, | |
| "ttm": "14y 4m 22d" | |
| }, | |
| { | |
| "coupon": 8.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1061281, | |
| "current_ytm": 6.97, | |
| "display_name": "Lic Housing Finance Limited 8.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07GT2", | |
| "issue_size": null, | |
| "last_traded_on": 1590105600, | |
| "maturity_date": 1740960000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 9d" | |
| }, | |
| { | |
| "coupon": 7.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1035982, | |
| "current_ytm": 6.97, | |
| "display_name": "Inland Waterways Authority Of India Sr-Ii 7.47 Bd 13Ot27 Fvrs10Lac L.T.D 7.47%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE896W08020", | |
| "issue_size": null, | |
| "last_traded_on": 1582848000, | |
| "maturity_date": 1823385600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 9m 21d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1041521, | |
| "current_ytm": 6.97, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KW0", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1747699200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "4y 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.97, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1124170, | |
| "current_ytm": 6.96, | |
| "display_name": "Rec Limited 8.97%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BP9", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1869350400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1111000, | |
| "current_ytm": 6.96, | |
| "display_name": "Power Finance Corporation Ltd 8.94%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FQ1", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1837555200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 3d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1054195, | |
| "current_ytm": 6.96, | |
| "display_name": "Lic Housing Finance Limited 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MW4", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1832716800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "7y 1m 7d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1366396.25, | |
| "current_ytm": 6.96, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JK7", | |
| "issue_size": null, | |
| "last_traded_on": 1578873600, | |
| "maturity_date": 1735171200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "4y 4d" | |
| }, | |
| { | |
| "coupon": 7.86, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1046800, | |
| "current_ytm": 6.95, | |
| "display_name": "Lic Housing Finance Limited 7.86%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07LU0", | |
| "issue_size": null, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1810512000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 4m 25d" | |
| }, | |
| { | |
| "coupon": 9.08, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1075600, | |
| "current_ytm": 6.95, | |
| "display_name": "Konkan Railway Corporation Limited 9.08%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE139F07063", | |
| "issue_size": null, | |
| "last_traded_on": 1596672000, | |
| "maturity_date": 1727222400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 3d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1133000, | |
| "current_ytm": 6.95, | |
| "display_name": "Power Finance Corporation Ltd 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JX9", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1868918400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1085000, | |
| "current_ytm": 6.95, | |
| "display_name": "Rec Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BU9", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1877040000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 3d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1186600, | |
| "current_ytm": 6.95, | |
| "display_name": "Hdb Financial Services Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE756I07CI8", | |
| "issue_size": null, | |
| "last_traded_on": 1591315200, | |
| "maturity_date": 1649116800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1219, | |
| "ttm": "1y 3m 14d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1065200, | |
| "current_ytm": 6.95, | |
| "display_name": "The Oriental Insurance Company Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE06GZ08015", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1868486400, | |
| "rated_as_on": 1582243200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 24d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1087000, | |
| "current_ytm": 6.95, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09EL2", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1795910400, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "5y 11m 7d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1311541.25, | |
| "current_ytm": 6.94, | |
| "display_name": "Power Grid Corporation Of India Limited 9.2%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FP4", | |
| "issue_size": null, | |
| "last_traded_on": 1569888000, | |
| "maturity_date": 1647043200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "1y 2m 18d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1087548, | |
| "current_ytm": 6.9313, | |
| "display_name": "National Highways Authority Of India Series Iv 8.37 Bd 21Jn29 Fvrs10Lac L.T.D 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07GN5", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1863648000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 30d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 105646.3, | |
| "current_ytm": 6.93, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07344", | |
| "issue_size": null, | |
| "last_traded_on": 1568678400, | |
| "maturity_date": 1676073600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1068900, | |
| "current_ytm": 6.93, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07286", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1884902400, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 9m 2d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104582.5, | |
| "current_ytm": 6.93, | |
| "display_name": "Nhpc Limited 8.54%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07716", | |
| "issue_size": null, | |
| "last_traded_on": 1566172800, | |
| "maturity_date": 1669420800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "1y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1120486, | |
| "current_ytm": 6.92, | |
| "display_name": "Power Finance Corporation Ltd 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KC1", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1874361600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 5m 3d" | |
| }, | |
| { | |
| "coupon": 8.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1051300, | |
| "current_ytm": 6.92, | |
| "display_name": "Export Import Bank Of India Sr-P-33 8.94 Bd 31Dc22 Fvrs10Lac L.T.D 8.94%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CB3", | |
| "issue_size": null, | |
| "last_traded_on": 1581379200, | |
| "maturity_date": 1672444800, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 9d" | |
| }, | |
| { | |
| "coupon": 8.51, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1135471, | |
| "current_ytm": 6.92, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Ltif 3C 8.51 Bd 19Dc33 Fvrs10Lac L.T.D 8.51%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AW8", | |
| "issue_size": null, | |
| "last_traded_on": 1592438400, | |
| "maturity_date": 2018563200, | |
| "rated_as_on": 1577923200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 11m 27d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1091243, | |
| "current_ytm": 6.92, | |
| "display_name": "Export Import Bank Of India Sr-Q-23 9.5 Bd 03Dc23 Fvrs10Lac L.T.D 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DG0", | |
| "issue_size": null, | |
| "last_traded_on": 1569369600, | |
| "maturity_date": 1701561600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 11m 11d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1038300, | |
| "current_ytm": 6.92, | |
| "display_name": "Air India Assets Holding Limited 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE0AED08037", | |
| "issue_size": null, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1887321600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1038200, | |
| "current_ytm": 6.92, | |
| "display_name": "Air India Assets Holding Limited 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE0AED08029", | |
| "issue_size": null, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1886457600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 9m 20d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104108.8, | |
| "current_ytm": 6.92, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07427", | |
| "issue_size": null, | |
| "last_traded_on": 1566172800, | |
| "maturity_date": 1644537600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "1y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1110518, | |
| "current_ytm": 6.91, | |
| "display_name": "Lic Housing Finance Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OB4", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1868918400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "8y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1132800, | |
| "current_ytm": 6.91, | |
| "display_name": "Power Finance Corporation Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DB8", | |
| "issue_size": null, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1907712000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "9y 5m 24d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1049452, | |
| "current_ytm": 6.91, | |
| "display_name": "Tata Cleantech Capital Limited 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE857Q07257", | |
| "issue_size": null, | |
| "last_traded_on": 1603929600, | |
| "maturity_date": 1733356800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 11m 13d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1124496, | |
| "current_ytm": 6.91, | |
| "display_name": "Reliance Industries Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08542", | |
| "issue_size": null, | |
| "last_traded_on": 1597968000, | |
| "maturity_date": 1857340800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 18d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1040, | |
| "current_ytm": 6.91, | |
| "display_name": "Power Finance Corporation Ltd 7.35%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07570", | |
| "issue_size": 2135730000, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 2076192000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 9m 25d" | |
| }, | |
| { | |
| "coupon": 8.8431, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1018288, | |
| "current_ytm": 6.9, | |
| "display_name": "Kotak Mahindra Investments Limited 8.8431%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE975F07GJ9", | |
| "issue_size": null, | |
| "last_traded_on": 1584057600, | |
| "maturity_date": 1616025600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 2m 24d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1118966, | |
| "current_ytm": 6.9, | |
| "display_name": "Rec Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BS3", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1873411200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 4m 22d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1087459, | |
| "current_ytm": 6.9, | |
| "display_name": "Export Import Bank Of India Sr-Q-11 9.45 Bd 16Sp23 Fvrs10Lac L.T.D 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CU3", | |
| "issue_size": null, | |
| "last_traded_on": 1567468800, | |
| "maturity_date": 1694822400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 8m 25d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1125, | |
| "current_ytm": 6.89, | |
| "display_name": "Tata Capital Financial Services Limited 8.85%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08342", | |
| "issue_size": 1726973000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1882396800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 8m 4d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1114216, | |
| "current_ytm": 6.89, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Ltif G C5 8.20 Bd 28Mr34 Fvrs10Lac L.T.D 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BG9", | |
| "issue_size": null, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 2027116800, | |
| "rated_as_on": 1577923200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1053787, | |
| "current_ytm": 6.89, | |
| "display_name": "Rural Electrification Corporation Limited 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AH8", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1804809600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "6y 2m 18d" | |
| }, | |
| { | |
| "coupon": 8.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1108110, | |
| "current_ytm": 6.887, | |
| "display_name": "Rural Electrification Corporation Limited 8.56%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BG8", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1859068800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 7d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1070900, | |
| "current_ytm": 6.88, | |
| "display_name": "Power Finance Corporation Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08CY2", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1747180800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 4m 22d" | |
| }, | |
| { | |
| "coupon": 8.63, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1102900, | |
| "current_ytm": 6.87, | |
| "display_name": "Rural Electrification Corporation Limited 8.63%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BB9", | |
| "issue_size": null, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1850774400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 8m 3d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1038366, | |
| "current_ytm": 6.87, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KV2", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1716163200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "3y 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.03, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1054720, | |
| "current_ytm": 6.86, | |
| "display_name": "Power Finance Corporation Ltd 8.03%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IE1", | |
| "issue_size": null, | |
| "last_traded_on": 1593475200, | |
| "maturity_date": 1777680000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 10d" | |
| }, | |
| { | |
| "coupon": 7.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1047, | |
| "current_ytm": 6.86, | |
| "display_name": "Ntpc Ltd 7.37%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JT8", | |
| "issue_size": 1825757000, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 2075155200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 9m 13d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1051500, | |
| "current_ytm": 6.86, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07KU4", | |
| "issue_size": null, | |
| "last_traded_on": 1591574400, | |
| "maturity_date": 1679356800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 27d" | |
| }, | |
| { | |
| "coupon": 7.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1032593, | |
| "current_ytm": 6.86, | |
| "display_name": "Lic Housing Finance Limited 7.78%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OI9", | |
| "issue_size": null, | |
| "last_traded_on": 1591833600, | |
| "maturity_date": 1724889600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1052536, | |
| "current_ytm": 6.86, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.84%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JB6", | |
| "issue_size": null, | |
| "last_traded_on": 1569456000, | |
| "maturity_date": 1664841600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 9m 12d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1020944, | |
| "current_ytm": 6.86, | |
| "display_name": "Export Import Bank Of India Sr-T-09 7.25 Bd 01Fb27 Fvrs10Lac L.T.D 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FJ9", | |
| "issue_size": null, | |
| "last_traded_on": 1583280000, | |
| "maturity_date": 1801440000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 1m 10d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1072100, | |
| "current_ytm": 6.85, | |
| "display_name": "Lic Housing Finance Limited 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OF5", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1878508800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 104515.9, | |
| "current_ytm": 6.85, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07336", | |
| "issue_size": null, | |
| "last_traded_on": 1564704000, | |
| "maturity_date": 1644537600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "1y 1m 20d" | |
| }, | |
| { | |
| "coupon": 7.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1069194, | |
| "current_ytm": 6.85, | |
| "display_name": "Rec Limited 7.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CI2", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1901145600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3735, | |
| "ttm": "9y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1106647, | |
| "current_ytm": 6.85, | |
| "display_name": "Export Import Bank Of India Sr-T-04 8.25 Bd 23Ju31 Fvrs10Lac L.T.D 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FE0", | |
| "issue_size": null, | |
| "last_traded_on": 1589932800, | |
| "maturity_date": 1939939200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 6m 1d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1060, | |
| "current_ytm": 6.84, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08MK5", | |
| "issue_size": 4470246000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1816387200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 7m 2d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 103425.2, | |
| "current_ytm": 6.84, | |
| "display_name": "Nhpc Limited 8.49%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07633", | |
| "issue_size": null, | |
| "last_traded_on": 1564704000, | |
| "maturity_date": 1637884800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1094.98, | |
| "current_ytm": 6.84, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.05%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08MM1", | |
| "issue_size": 6428443000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1974240000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "11y 7m 2d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1046213, | |
| "current_ytm": 6.84, | |
| "display_name": "Export Import Bank Of India Sr-O-18 9 Bd 07Fb22 Fvrs10Lac L.T.D 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08AQ5", | |
| "issue_size": null, | |
| "last_traded_on": 1568678400, | |
| "maturity_date": 1644192000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 1m 16d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1120200, | |
| "current_ytm": 6.84, | |
| "display_name": "Lic Housing Finance Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NU6", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1863993600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "8y 1m 3d" | |
| }, | |
| { | |
| "coupon": 8.06, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1077835, | |
| "current_ytm": 6.8325, | |
| "display_name": "Rural Electrification Corporation Limited 8.06%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08AZ0", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1837728000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 3m 5d" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1322625, | |
| "current_ytm": 6.83, | |
| "display_name": "Power Grid Corporation Of India Limited 8.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HM7", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1720396800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "3y 6m 16d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1017899, | |
| "current_ytm": 6.83, | |
| "display_name": "L&T Housing Finance Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE476M07BT4", | |
| "issue_size": null, | |
| "last_traded_on": 1594944000, | |
| "maturity_date": 1638144000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 11m 7d" | |
| }, | |
| { | |
| "coupon": 9.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1039896, | |
| "current_ytm": 6.82, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07HJ3", | |
| "issue_size": null, | |
| "last_traded_on": 1592438400, | |
| "maturity_date": 1636588800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 20d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1067894, | |
| "current_ytm": 6.82, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07245", | |
| "issue_size": null, | |
| "last_traded_on": 1594598400, | |
| "maturity_date": 1805846400, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.5884, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.10161, | |
| "current_price": 1031885, | |
| "current_ytm": 6.8, | |
| "display_name": "Bajaj Housing Finance Limited 8.5884%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE377Y07110", | |
| "issue_size": null, | |
| "last_traded_on": 1592438400, | |
| "maturity_date": 1654560000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1166, | |
| "ttm": "1y 5m 16d" | |
| }, | |
| { | |
| "coupon": 8.9333, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1036855, | |
| "current_ytm": 6.8, | |
| "display_name": "L&T Finance Limited 8.9333%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07857", | |
| "issue_size": null, | |
| "last_traded_on": 1599782400, | |
| "maturity_date": 1659916800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1292, | |
| "ttm": "1y 7m 17d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1027421, | |
| "current_ytm": 6.8, | |
| "display_name": "United India Insurance Company Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE346Z08011", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1833062400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "brickwork", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "7y 1m 11d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1055658, | |
| "current_ytm": 6.8, | |
| "display_name": "Reliance Ports & Terminals Ltd 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE941D07158", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1793145600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 10m 6d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1028765, | |
| "current_ytm": 6.79, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07HE4", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1629158400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 7m 26d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1130508, | |
| "current_ytm": 6.79, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MC8", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1855612800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "7y 9m 28d" | |
| }, | |
| { | |
| "coupon": 7.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1061211, | |
| "current_ytm": 6.79, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BV1", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 2040422400, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1088970, | |
| "current_ytm": 6.79, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-3 8.2 Bd 16Mr28 Fvrs10Lac L.T.D 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AE6", | |
| "issue_size": null, | |
| "last_traded_on": 1597795200, | |
| "maturity_date": 1836777600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 2m 23d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1094296, | |
| "current_ytm": 6.79, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MU0", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1842998400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4749, | |
| "ttm": "7y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1117932, | |
| "current_ytm": 6.78, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.52%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE031A08624", | |
| "issue_size": null, | |
| "last_traded_on": 1591574400, | |
| "maturity_date": 1858982400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 6d" | |
| }, | |
| { | |
| "coupon": 9.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1201107, | |
| "current_ytm": 6.77, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.47%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1936137600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "10y 4m 18d" | |
| }, | |
| { | |
| "coupon": 8.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1113128, | |
| "current_ytm": 6.76, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.41%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08699", | |
| "issue_size": null, | |
| "last_traded_on": 1598227200, | |
| "maturity_date": 1868227200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 21d" | |
| }, | |
| { | |
| "coupon": 8.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1100855, | |
| "current_ytm": 6.76, | |
| "display_name": "Export Import Bank Of India Sr-T-05 8.11 Bd 11Jl31 Fvrs10Lac L.T.D 8.11%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FF7", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1941494400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 6m 19d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1060392, | |
| "current_ytm": 6.75, | |
| "display_name": "National Highways Authority Of India Sr V 7.70 Bd 13Sp29 Fvrs10Lac L.T.D 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HH5", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1883952000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 8m 22d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.266884, | |
| "current_price": 1017800, | |
| "current_ytm": 6.75, | |
| "display_name": "Bhopal Dhule Transmission Company Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE774N07087", | |
| "issue_size": null, | |
| "last_traded_on": 1594684800, | |
| "maturity_date": 1649030400, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1770, | |
| "ttm": "1y 3m 13d" | |
| }, | |
| { | |
| "coupon": 7.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1099289, | |
| "current_ytm": 6.75, | |
| "display_name": "National Highways Authority Of India Sr Vi 7.87 Bd 08Dc34 Fvrs10Lac L.T.D 7.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HI3", | |
| "issue_size": null, | |
| "last_traded_on": 1603411200, | |
| "maturity_date": 2049148800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "13y 11m 16d" | |
| }, | |
| { | |
| "coupon": 7.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1035944, | |
| "current_ytm": 6.75, | |
| "display_name": "Power Finance Corporation Ltd 7.44%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JC3", | |
| "issue_size": null, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1812672000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "6y 5m 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1006600, | |
| "current_ytm": 6.75, | |
| "display_name": "Darbhanga Motihari Transmission Company Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE732Q07872", | |
| "issue_size": null, | |
| "last_traded_on": 1597104000, | |
| "maturity_date": 1609372800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1105, | |
| "ttm": " 9d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1037347, | |
| "current_ytm": 6.745, | |
| "display_name": "Rural Electrification Corporation Limited 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AA3", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1794009600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 10m 16d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1167910, | |
| "current_ytm": 6.74, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LR8", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1883174400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 8m 13d" | |
| }, | |
| { | |
| "coupon": 8.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1160324, | |
| "current_ytm": 6.74, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Ltif 3E 8.62 Bd 14Mr34 Fvrs10Lacs L.T.D 8.62%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BE4", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 2025907200, | |
| "rated_as_on": 1577923200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 2m 20d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1140, | |
| "current_ytm": 6.73, | |
| "display_name": "Tata Capital Financial Services Ltd 9.1%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N08292", | |
| "issue_size": 3418488000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1853625600, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 5d" | |
| }, | |
| { | |
| "coupon": 7.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1039680, | |
| "current_ytm": 6.73, | |
| "display_name": "Rural Electrification Corporation Limited 7.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AC9", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1798588800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 8d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1153953, | |
| "current_ytm": 6.7284, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Ltif 3D 8.54 Bd 30Jn34 Fvrs10Lac L.T.D 8.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AZ1", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 2022192000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 1m 8d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1052874, | |
| "current_ytm": 6.72, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07IO1", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1656892800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 6m 12d" | |
| }, | |
| { | |
| "coupon": 9.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1340210, | |
| "current_ytm": 6.72, | |
| "display_name": "Power Grid Corporation Of India Limited 9.33%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FE8", | |
| "issue_size": null, | |
| "last_traded_on": 1571270400, | |
| "maturity_date": 1671062400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "1y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1023332, | |
| "current_ytm": 6.72, | |
| "display_name": "Power Finance Corporation Ltd 7.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08IR3", | |
| "issue_size": null, | |
| "last_traded_on": 1599436800, | |
| "maturity_date": 1800403200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 29d" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1087932, | |
| "current_ytm": 6.71, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07SB7", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1887321600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1051612, | |
| "current_ytm": 6.71, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BW9", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1883606400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 8m 18d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1141208, | |
| "current_ytm": 6.71, | |
| "display_name": "Nuclear Power Corporation Of India Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08204", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1832198400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "7y 1m 1d" | |
| }, | |
| { | |
| "coupon": 8.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1090691, | |
| "current_ytm": 6.7025, | |
| "display_name": "Bajaj Finance Limited 8.94%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08763", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1762473600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "4y 10m 16d" | |
| }, | |
| { | |
| "coupon": 5.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 10030, | |
| "current_ytm": 6.7, | |
| "display_name": "Rural Electrification Corporation Limited 5.75%", | |
| "face_value": 10000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07KW8", | |
| "issue_size": null, | |
| "last_traded_on": 1583280000, | |
| "maturity_date": 1688083200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 6m 8d" | |
| }, | |
| { | |
| "coupon": 7.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1072046, | |
| "current_ytm": 6.7, | |
| "display_name": "National Highways Authority Of India 7.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HF9", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1877126400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 4d" | |
| }, | |
| { | |
| "coupon": 8.3535, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1053300, | |
| "current_ytm": 6.7, | |
| "display_name": "Fullerton India Credit Company Ltd 8.3535%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE535H07AH4", | |
| "issue_size": null, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1713312000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": "3y 3m 26d" | |
| }, | |
| { | |
| "coupon": 9.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1145800, | |
| "current_ytm": 6.7, | |
| "display_name": "Air India Limited 9.84%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE954K08022", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1790467200, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 9m 5d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1061534, | |
| "current_ytm": 6.7, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE202E08037", | |
| "issue_size": null, | |
| "last_traded_on": 1592438400, | |
| "maturity_date": 1804291200, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 2m 12d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1099664, | |
| "current_ytm": 6.7, | |
| "display_name": "Ntpc Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KJ7", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1863129600, | |
| "rated_as_on": 1563235200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 24d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 428194.8, | |
| "current_ytm": 6.6991, | |
| "display_name": "Power Grid Corporation Of India Limited 7.49%", | |
| "face_value": 400000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08619", | |
| "issue_size": null, | |
| "last_traded_on": 1592956800, | |
| "maturity_date": 2045347200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 10m 3d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1054501, | |
| "current_ytm": 6.69, | |
| "display_name": "Export Import Bank Of India Sr-P-16 9.15 Bd 05Sp22 Fvrs10Lac L.T.D 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BK6", | |
| "issue_size": null, | |
| "last_traded_on": 1584057600, | |
| "maturity_date": 1662336000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m 14d" | |
| }, | |
| { | |
| "coupon": 7.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1045, | |
| "current_ytm": 6.69, | |
| "display_name": "Rural Electrification Corporation Ltd 7.18%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JT6", | |
| "issue_size": 2351118000, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 2077833600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 10m 14d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1109221, | |
| "current_ytm": 6.68, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-B4 7.99 Bd 02Fb33 Fvrs10Lac L.T.D 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08980", | |
| "issue_size": null, | |
| "last_traded_on": 1597795200, | |
| "maturity_date": 1990915200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 1m 11d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 534619, | |
| "current_ytm": 6.68, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.45%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07NN3", | |
| "issue_size": null, | |
| "last_traded_on": 1592265600, | |
| "maturity_date": 1740441600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 3d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1141179, | |
| "current_ytm": 6.67, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RK0", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1859068800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 7d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1104270, | |
| "current_ytm": 6.67, | |
| "display_name": "Rural Electrification Corporation Limited 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BH6", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1859760000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 15d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1116900, | |
| "current_ytm": 6.67, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RT1", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1869264000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 5d" | |
| }, | |
| { | |
| "coupon": 8.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1120486, | |
| "current_ytm": 6.67, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Sbm-G-Sa-1 8.56 Bd 14Nv28 Fvrs10Lac L.T.D 8.56%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AS6", | |
| "issue_size": null, | |
| "last_traded_on": 1592179200, | |
| "maturity_date": 1857772800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 10m 23d" | |
| }, | |
| { | |
| "coupon": 7.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1076468, | |
| "current_ytm": 6.67, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.54%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BT5", | |
| "issue_size": null, | |
| "last_traded_on": 1603411200, | |
| "maturity_date": 2037744000, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "13y 7m 7d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1012212, | |
| "current_ytm": 6.67, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IO9", | |
| "issue_size": null, | |
| "last_traded_on": 1587513600, | |
| "maturity_date": 1609804800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": " 14d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1171000, | |
| "current_ytm": 6.67, | |
| "display_name": "Indian Railway Finance Corporation\n8.83 Loa 14My32 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HE0", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1968105600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 8036, | |
| "ttm": "11y 4m 22d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1044053, | |
| "current_ytm": 6.66, | |
| "display_name": "Power Grid Corporation Of India Limited 7.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08577", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1878768000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 23d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 316614.6, | |
| "current_ytm": 6.65, | |
| "display_name": "Power Grid Corporation Of India Limited 7.49%", | |
| "face_value": 300000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08601", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1887580800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m 3d" | |
| }, | |
| { | |
| "coupon": 8.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1099988, | |
| "current_ytm": 6.65, | |
| "display_name": "National Highways Authority Of India Series Vi 8.27 Bd 28Mr29 Fvrs10Lac L.T.D 8.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07GP0", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1869350400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1028989, | |
| "current_ytm": 6.65, | |
| "display_name": "Export Import Bank Of India Sr-T-07 7.02 Bd 25Nv31 Fvrs10Lac L.T.D 7.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FH3", | |
| "issue_size": null, | |
| "last_traded_on": 1590537600, | |
| "maturity_date": 1953331200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 11m 3d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1156261, | |
| "current_ytm": 6.65, | |
| "display_name": "Export Import Bank Of India Sr-U-07 8.5 Bd 14Mr33 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FS0", | |
| "issue_size": null, | |
| "last_traded_on": 1590537600, | |
| "maturity_date": 1994371200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 2m 20d" | |
| }, | |
| { | |
| "coupon": 8.29, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1066203, | |
| "current_ytm": 6.645, | |
| "display_name": "Mahanagar Telephone Nigam Limited 8.29%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE153A08071", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1732752000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 6d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1172, | |
| "current_ytm": 6.64, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.49%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07923", | |
| "issue_size": 355119000, | |
| "last_traded_on": 1540512000, | |
| "maturity_date": 2013811200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 3d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1054405, | |
| "current_ytm": 6.64, | |
| "display_name": "National Highways Authority Of India Sr Iv 7.49 Bd 01Ag29 Fvrs10Lac L.T.D 7.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HG7", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1880236800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 7m 10d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1040900, | |
| "current_ytm": 6.64, | |
| "display_name": "Fullerton India Credit Company Ltd 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H08603", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1654819200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 5m 19d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1090904, | |
| "current_ytm": 6.63, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-2 8.2 Bd 09Mr28 Fvrs10Lac L.T.D 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AD8", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1836172800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 2m 16d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1063307, | |
| "current_ytm": 6.63, | |
| "display_name": "Export Import Bank Of India Sr-P09 9.25 Bd 12Jl22 Fvrs10Lac L.T.D 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BE9", | |
| "issue_size": null, | |
| "last_traded_on": 1571702400, | |
| "maturity_date": 1657584000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 6m 20d" | |
| }, | |
| { | |
| "coupon": 9.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1066340, | |
| "current_ytm": 6.6293, | |
| "display_name": "Hdb Financial Services Limited 9.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I08033", | |
| "issue_size": null, | |
| "last_traded_on": 1599696000, | |
| "maturity_date": 1679443200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1090000, | |
| "current_ytm": 6.62, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07301", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1719532800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3080, | |
| "ttm": "3y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020500, | |
| "current_ytm": 6.62, | |
| "display_name": "Tata Capital Financial Services Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KW6", | |
| "issue_size": null, | |
| "last_traded_on": 1582588800, | |
| "maturity_date": 1616716800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 730, | |
| "ttm": " 3m 4d" | |
| }, | |
| { | |
| "coupon": 7.86, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1035460, | |
| "current_ytm": 6.62, | |
| "display_name": "Lic Housing Finance Limited 7.86%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KJ5", | |
| "issue_size": null, | |
| "last_traded_on": 1591833600, | |
| "maturity_date": 1695081600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 8m 28d" | |
| }, | |
| { | |
| "coupon": 7.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.270433, | |
| "current_price": 1017900, | |
| "current_ytm": 6.62, | |
| "display_name": "Canfin Homes Limited 7.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE477A07241", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1652832000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 4m 26d" | |
| }, | |
| { | |
| "coupon": 7.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1049561, | |
| "current_ytm": 6.62, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 20E 7.41 Loa 18Jl29 Fvrs10Lac L.T.D 7.41%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BM7", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1879027200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 26d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1075802, | |
| "current_ytm": 6.62, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LX6", | |
| "issue_size": null, | |
| "last_traded_on": 1577404800, | |
| "maturity_date": 1697760000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "2y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1109614, | |
| "current_ytm": 6.62, | |
| "display_name": "National Highways Authority Of India Series I 8.36 Bd 20My29 Fvrs10Lac L.T.D 8.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07HD4", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1873929600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1145700, | |
| "current_ytm": 6.61, | |
| "display_name": "Food Corporation Of India Series Vii 8.95 Bd 01Mr29 Fvrs10Lac L.T.D 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE861G08043", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1867017600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 7d" | |
| }, | |
| { | |
| "coupon": 8.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1150.5, | |
| "current_ytm": 6.61, | |
| "display_name": "L&T Finance Ltd 8.98%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE027E07998", | |
| "issue_size": 1017456000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1077078, | |
| "current_ytm": 6.61, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KZ3", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1842393600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 4m 28d" | |
| }, | |
| { | |
| "coupon": 7.74, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1063017, | |
| "current_ytm": 6.61, | |
| "display_name": "Power Finance Corporation Ltd 7.74%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JI0", | |
| "issue_size": null, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1832716800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 1m 7d" | |
| }, | |
| { | |
| "coupon": 7.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1056760, | |
| "current_ytm": 6.6, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BU3", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1881273600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 7m 22d" | |
| }, | |
| { | |
| "coupon": 7.46, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1088946, | |
| "current_ytm": 6.6, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Ltif-G D2 7.46 Loa 27Dc34 Fvrs10Lac L.T.D 7.46%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BU0", | |
| "issue_size": null, | |
| "last_traded_on": 1596067200, | |
| "maturity_date": 2050790400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "14y 5d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1068900, | |
| "current_ytm": 6.59, | |
| "display_name": "Lic Housing Finance Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IF7", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1761177600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 10m 1d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1095838, | |
| "current_ytm": 6.59, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MT2", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1811376000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "6y 5m 5d" | |
| }, | |
| { | |
| "coupon": 10, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1113000, | |
| "current_ytm": 6.59, | |
| "display_name": "National Highways Authority Of India Sr-1 Br Bd 28Ju48 Fvrs10Lac L.T.D 10.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07GK1", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 2476915200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 10958, | |
| "ttm": "27y 6m 6d" | |
| }, | |
| { | |
| "coupon": 9.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1096973, | |
| "current_ytm": 6.58, | |
| "display_name": "Export Import Bank Of India Sr-Q-15 9.58 Bd 04Ot23 Fvrs10Lac L.T.D 9.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CY5", | |
| "issue_size": null, | |
| "last_traded_on": 1577923200, | |
| "maturity_date": 1696377600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3648, | |
| "ttm": "2y 9m 12d" | |
| }, | |
| { | |
| "coupon": 7.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1063119, | |
| "current_ytm": 6.58, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BX7", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1888617600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 10m 15d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1120378, | |
| "current_ytm": 6.575, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE031A08707", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1869091200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 3d" | |
| }, | |
| { | |
| "coupon": 7.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1033827, | |
| "current_ytm": 6.57, | |
| "display_name": "Power Finance Corporation Ltd 7.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IO0", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1799107200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 14d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1127391, | |
| "current_ytm": 6.57, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Sbm -G Sa-3 8.50 Ncd 27Fb29 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BC8", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1866844800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 5d" | |
| }, | |
| { | |
| "coupon": 7.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1040483, | |
| "current_ytm": 6.57, | |
| "display_name": "Power Finance Corporation Ltd 7.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JE9", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1817596800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "6y 7m 16d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1132778, | |
| "current_ytm": 6.565, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.58%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE031A08681", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1865721600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 23d" | |
| }, | |
| { | |
| "coupon": 9.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1180, | |
| "current_ytm": 6.56, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.5%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08MP4", | |
| "issue_size": 3363723000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1863388800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 27d" | |
| }, | |
| { | |
| "coupon": 7.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1052, | |
| "current_ytm": 6.56, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.28%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07801", | |
| "issue_size": 20573103000, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1924041600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 11m 29d" | |
| }, | |
| { | |
| "coupon": 7.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1067378, | |
| "current_ytm": 6.56, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-B1 7.27 Bd 14Sp32 Fvrs10Lac L.T.D 7.27%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08915", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1978732800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "11y 8m 23d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1137302, | |
| "current_ytm": 6.56, | |
| "display_name": "Rural Electrification Corporation Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BC7", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1853712000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 6d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1142000, | |
| "current_ytm": 6.55, | |
| "display_name": "Rec Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BJ2", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1863734400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1138465, | |
| "current_ytm": 6.55, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JN1", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1804550400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 2m 15d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1149300, | |
| "current_ytm": 6.55, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RG8", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1855267200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 24d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1036475, | |
| "current_ytm": 6.55, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08640", | |
| "issue_size": null, | |
| "last_traded_on": 1580860800, | |
| "maturity_date": 1649635200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1217, | |
| "ttm": "1y 3m 20d" | |
| }, | |
| { | |
| "coupon": 8.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1106411, | |
| "current_ytm": 6.55, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Pb5Sa4 8.24 Bd 22Mr29 Fvrs10Lac L.T.D 8.24%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BF1", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1868832000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m" | |
| }, | |
| { | |
| "coupon": 8.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1124844, | |
| "current_ytm": 6.5425, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.38%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE031A08673", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1864425600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 8d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1108372, | |
| "current_ytm": 6.53, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Pmay-G Pb-3 8.18 Bd 26Dc28 Fvrs10Lac L.T.D 8.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AX6", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1861401600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 4d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1114307, | |
| "current_ytm": 6.52, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BC1", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1107246, | |
| "current_ytm": 6.52, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BE7", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1869436800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 7d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1126392, | |
| "current_ytm": 6.52, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BA5", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1866326400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 30d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1111482, | |
| "current_ytm": 6.52, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BD9", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1869091200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1115403, | |
| "current_ytm": 6.52, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AZ4", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1862524800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 17d" | |
| }, | |
| { | |
| "coupon": 9.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1322442.5, | |
| "current_ytm": 6.52, | |
| "display_name": "Power Grid Corporation Of India Limited 9.47%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07ES1", | |
| "issue_size": null, | |
| "last_traded_on": 1580169600, | |
| "maturity_date": 1648684800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "1y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1119133, | |
| "current_ytm": 6.51, | |
| "display_name": "Hdfc Bank Limited 8.44%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE040A08393", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1861574400, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1141025, | |
| "current_ytm": 6.51, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Ltif C3 8.12 Bd 07Dc33 Fvrs10Lac L.T.D 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AU2", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 2017526400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "12y 11m 15d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1118266, | |
| "current_ytm": 6.5, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AY7", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1859500800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 12d" | |
| }, | |
| { | |
| "coupon": 10.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1070400, | |
| "current_ytm": 6.5, | |
| "display_name": "Bajaj Finance Limited 10.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08656", | |
| "issue_size": null, | |
| "last_traded_on": 1594944000, | |
| "maturity_date": 1661126400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 212400, | |
| "current_ytm": 6.49, | |
| "display_name": "Nhpc Limited 7.5%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AR7", | |
| "issue_size": null, | |
| "last_traded_on": 1597968000, | |
| "maturity_date": 1854489600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3288, | |
| "ttm": "7y 9m 15d" | |
| }, | |
| { | |
| "coupon": 7.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1056049, | |
| "current_ytm": 6.49, | |
| "display_name": "Export Import Bank Of India Sr-U-02 7.56 Bd 18My27 Fvrs10Lac L.T.D 7.56%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FN1", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1810598400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 4m 26d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.066705, | |
| "current_price": 1013500, | |
| "current_ytm": 6.49, | |
| "display_name": "Kudgi Transmission Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE945S07066", | |
| "issue_size": null, | |
| "last_traded_on": 1595548800, | |
| "maturity_date": 1619308800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1486, | |
| "ttm": " 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1032777, | |
| "current_ytm": 6.49, | |
| "display_name": "Aditya Birla Finance Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07797", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1642032000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 22d" | |
| }, | |
| { | |
| "coupon": 8.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1102235, | |
| "current_ytm": 6.48, | |
| "display_name": "Nlc India Limited 8.09%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE589A07037", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1874707200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 5m 7d" | |
| }, | |
| { | |
| "coupon": 8.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1120668, | |
| "current_ytm": 6.48, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Sbm-G Sa-2 8.29 Bd 24Jn29 Fvrs10Lac L.T.D 8.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AY4", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1863907200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 2d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1327818.75, | |
| "current_ytm": 6.47, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KH1", | |
| "issue_size": null, | |
| "last_traded_on": 1572825600, | |
| "maturity_date": 1666137600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 9m 27d" | |
| }, | |
| { | |
| "coupon": 8.06, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1037200, | |
| "current_ytm": 6.47, | |
| "display_name": "Rural Electrification Corporation Limited 8.06%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08849", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1685491200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m 9d" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1041124, | |
| "current_ytm": 6.46, | |
| "display_name": "Export Import Bank Of India Sr-U-04 7.22 Bd 03Ag27 Fvrs10Lac L.T.D 7.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FP6", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1817251200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 7m 12d" | |
| }, | |
| { | |
| "coupon": 7.71, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2566250, | |
| "current_ytm": 6.46, | |
| "display_name": "L&T Finance Limited 7.71%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07543", | |
| "issue_size": null, | |
| "last_traded_on": 1585612800, | |
| "maturity_date": 1659916800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 7m 17d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1066600, | |
| "current_ytm": 6.45, | |
| "display_name": "Power Finance Corporation Ltd 7.75%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE134E08IX1", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1805673600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 3m" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 213869.6, | |
| "current_ytm": 6.45, | |
| "display_name": "Nhpc Limited 7.5%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AS5", | |
| "issue_size": null, | |
| "last_traded_on": 1603411200, | |
| "maturity_date": 1885939200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "8y 9m 14d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1096257, | |
| "current_ytm": 6.45, | |
| "display_name": "Rural Electrification Corporation Limited 8.01%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08AY3", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1837468800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "7y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1116873, | |
| "current_ytm": 6.45, | |
| "display_name": "Rec Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BO2", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1869091200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 3d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1018516, | |
| "current_ytm": 6.45, | |
| "display_name": "Housing And Urban Development Corporation Limited 7.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08731", | |
| "issue_size": null, | |
| "last_traded_on": 1587686400, | |
| "maturity_date": 1663286400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1156, | |
| "ttm": "1y 8m 25d" | |
| }, | |
| { | |
| "coupon": 8.77, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1140550, | |
| "current_ytm": 6.45, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr- Pmay-G Pb-1 8.77 Bd 05Ot28 Fvrs10Lac L.T.D 8.77%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08AP2", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1854316800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 13d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1041000, | |
| "current_ytm": 6.45, | |
| "display_name": "Housing And Urban Development Corporation Ltd 7.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AI7", | |
| "issue_size": null, | |
| "last_traded_on": 1531440000, | |
| "maturity_date": 1753920000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 9d" | |
| }, | |
| { | |
| "coupon": 9.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1008178, | |
| "current_ytm": 6.45, | |
| "display_name": "Power Finance Corporation Ltd 9.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08EX0", | |
| "issue_size": null, | |
| "last_traded_on": 1586995200, | |
| "maturity_date": 1661040000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 7m 30d" | |
| }, | |
| { | |
| "coupon": 8.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1026988, | |
| "current_ytm": 6.44, | |
| "display_name": "Ultratech Cement Limited 8.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G08057", | |
| "issue_size": null, | |
| "last_traded_on": 1574985600, | |
| "maturity_date": 1623024000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1039, | |
| "ttm": " 5m 16d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1334566.25, | |
| "current_ytm": 6.44, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JV4", | |
| "issue_size": null, | |
| "last_traded_on": 1572998400, | |
| "maturity_date": 1656374400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 101734.4, | |
| "current_ytm": 6.43, | |
| "display_name": "Oriental Nagpur Betul Highway Limited 8.28%", | |
| "face_value": 100000, | |
| "frequency": "Semi annually", | |
| "isin": "INE105N07100", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1632960000, | |
| "rated_as_on": 1563235200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1779, | |
| "ttm": " 9m 8d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1140784, | |
| "current_ytm": 6.43, | |
| "display_name": "Nuclear Power Corporation Of India Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08196", | |
| "issue_size": null, | |
| "last_traded_on": 1601337600, | |
| "maturity_date": 1800662400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "6y 1m 1d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1148500, | |
| "current_ytm": 6.43, | |
| "display_name": "Damodar Valley Corporation Sr-14B 9.3 Loa 30Mr27 Fvrs10Lac L.T.D 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE753F07038", | |
| "issue_size": null, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1806364800, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1287598.75, | |
| "current_ytm": 6.42, | |
| "display_name": "Power Grid Corporation Of India Limited 9.47%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07ER3", | |
| "issue_size": null, | |
| "last_traded_on": 1583971200, | |
| "maturity_date": 1617148800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": " 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 107691.6, | |
| "current_ytm": 6.42, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07849", | |
| "issue_size": null, | |
| "last_traded_on": 1583280000, | |
| "maturity_date": 1720915200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3288, | |
| "ttm": "3y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1093396, | |
| "current_ytm": 6.42, | |
| "display_name": "Lic Housing Finance Limited 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JS8", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1782691200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 6m 7d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1060711, | |
| "current_ytm": 6.41, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NQ6", | |
| "issue_size": null, | |
| "last_traded_on": 1583366400, | |
| "maturity_date": 1714003200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "3y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1123777, | |
| "current_ytm": 6.4015, | |
| "display_name": "Power Grid Corporation Of India Limited 8.24%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE752E08551", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1865721600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 23d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1124324, | |
| "current_ytm": 6.4, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08246", | |
| "issue_size": null, | |
| "last_traded_on": 1604275200, | |
| "maturity_date": 1858982400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "7y 11m 6d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1108000, | |
| "current_ytm": 6.4, | |
| "display_name": "Bajaj Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A08797", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1786665600, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "5y 7m 23d" | |
| }, | |
| { | |
| "coupon": 7.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1059344, | |
| "current_ytm": 6.4, | |
| "display_name": "Ntpc Limited 7.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KL3", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1878940800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 25d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1137874, | |
| "current_ytm": 6.4, | |
| "display_name": "Reliance Industries Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08567", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1860105600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 11m 19d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1055878, | |
| "current_ytm": 6.4, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MP0", | |
| "issue_size": null, | |
| "last_traded_on": 1584057600, | |
| "maturity_date": 1685145600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "2y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.79, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1167715, | |
| "current_ytm": 6.4, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.79%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GX2", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1904083200, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "9y 4m 12d" | |
| }, | |
| { | |
| "coupon": 7.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1040405, | |
| "current_ytm": 6.39, | |
| "display_name": "National Housing Bank 7.17 Bd 01Jn23 Fvrs10Lac L.T.D 7.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07025", | |
| "issue_size": null, | |
| "last_traded_on": 1467849600, | |
| "maturity_date": 1672531200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1445215, | |
| "current_ytm": 6.39, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KA6", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1814140800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 6m 6d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1117.35, | |
| "current_ytm": 6.39, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D08MA6", | |
| "issue_size": 8523308000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1780704000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1024664, | |
| "current_ytm": 6.39, | |
| "display_name": "L&T Finance Limited 8.92%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07683", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1633478400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": " 9m 14d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1084018, | |
| "current_ytm": 6.39, | |
| "display_name": "Export Import Bank Of India Sr-S-03 8.25 Bd 28Sp25 Fvrs10Lac L.T.D 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EP9", | |
| "issue_size": null, | |
| "last_traded_on": 1585612800, | |
| "maturity_date": 1759017600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 6d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1212526, | |
| "current_ytm": 6.38, | |
| "display_name": "Power Grid Corporation Of India Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JA8", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1914192000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 6940, | |
| "ttm": "9y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1044856, | |
| "current_ytm": 6.38, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MO3", | |
| "issue_size": null, | |
| "last_traded_on": 1575504000, | |
| "maturity_date": 1653609600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1133600, | |
| "current_ytm": 6.38, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-Ltif Poa -1 8.65 Bd 08Ju28 Fvrs10Lac L.T.D 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AJ5", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1844035200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 5m 17d" | |
| }, | |
| { | |
| "coupon": 7.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1089254, | |
| "current_ytm": 6.38, | |
| "display_name": "Power Grid Corporation Of India Limited 7.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OB6", | |
| "issue_size": null, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1947715200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 8m 30d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1113823, | |
| "current_ytm": 6.38, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr Sbm G Sa - 5 8.15 Bd 28Mr29 Fvrs10Lac L.T.D 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BH7", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1869350400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.42, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1129662, | |
| "current_ytm": 6.38, | |
| "display_name": "National Bank For Agriculture And Rural Development Series Pmay-G Pb-4 8.42 Bd 13Fb29 Fvrs10Lac L.T.D 8.42%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE261F08BA2", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1865635200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 22d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1141679, | |
| "current_ytm": 6.37, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MW6", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1906070400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.323719, | |
| "current_price": 1142501, | |
| "current_ytm": 6.37, | |
| "display_name": "Axis Bank Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE238A08450", | |
| "issue_size": null, | |
| "last_traded_on": 1595376000, | |
| "maturity_date": 1861574400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1163067, | |
| "current_ytm": 6.36, | |
| "display_name": "Reliance Industries Limited 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08534", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1855353600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "7y 9m 25d" | |
| }, | |
| { | |
| "coupon": 7.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 110721, | |
| "current_ytm": 6.36, | |
| "display_name": "Housing And Urban Development Corp. Ltd 7.83%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE031A09FD3", | |
| "issue_size": null, | |
| "last_traded_on": 1475020800, | |
| "maturity_date": 1794355200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 10m 20d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1130297, | |
| "current_ytm": 6.36, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MV8", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1874534400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": "8y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1133000, | |
| "current_ytm": 6.36, | |
| "display_name": "National Highways Authority Of India Series V 8.49 Bd 05Fb29 Fvrs10Lac L.T.D 8.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07GO3", | |
| "issue_size": null, | |
| "last_traded_on": 1603929600, | |
| "maturity_date": 1864944000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 1m 14d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1040934, | |
| "current_ytm": 6.35, | |
| "display_name": "Ongc Petro Additions Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE163N08073", | |
| "issue_size": null, | |
| "last_traded_on": 1593475200, | |
| "maturity_date": 1650326400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 3m 28d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1099542, | |
| "current_ytm": 6.35, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LY4", | |
| "issue_size": null, | |
| "last_traded_on": 1583452800, | |
| "maturity_date": 1729382400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m 28d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.160384, | |
| "current_price": 1090000, | |
| "current_ytm": 6.35, | |
| "display_name": "East-North Interconnection Company Limited 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556S07285", | |
| "issue_size": null, | |
| "last_traded_on": 1584576000, | |
| "maturity_date": 1703808000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2898, | |
| "ttm": "3y 7d" | |
| }, | |
| { | |
| "coupon": 7.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1081800, | |
| "current_ytm": 6.34, | |
| "display_name": "Ntpc Limited 7.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KI9", | |
| "issue_size": null, | |
| "last_traded_on": 1595376000, | |
| "maturity_date": 1954972800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 11m 22d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1370347.5, | |
| "current_ytm": 6.33, | |
| "display_name": "Power Grid Corporation Of India Limited 9.25%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JJ9", | |
| "issue_size": null, | |
| "last_traded_on": 1583280000, | |
| "maturity_date": 1703548800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "3y 4d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.096542, | |
| "current_price": 1047613, | |
| "current_ytm": 6.33, | |
| "display_name": "Gail (India) Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE129A07206", | |
| "issue_size": null, | |
| "last_traded_on": 1591920000, | |
| "maturity_date": 1677110400, | |
| "rated_as_on": 1580083200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "2y 2m 1d" | |
| }, | |
| { | |
| "coupon": 8.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 109914.1, | |
| "current_ytm": 6.32, | |
| "display_name": "Nhpc Limited 8.78%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07450", | |
| "issue_size": null, | |
| "last_traded_on": 1587945600, | |
| "maturity_date": 1739232000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "4y 1m 20d" | |
| }, | |
| { | |
| "coupon": 7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1035591, | |
| "current_ytm": 6.32, | |
| "display_name": "Housing And Urban Development Corporation Ltd 7.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AK3", | |
| "issue_size": null, | |
| "last_traded_on": 1554768000, | |
| "maturity_date": 1759968000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 17d" | |
| }, | |
| { | |
| "coupon": 7.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1009300, | |
| "current_ytm": 6.32, | |
| "display_name": "Rural Electrification Corporation Limited 7.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AO4", | |
| "issue_size": null, | |
| "last_traded_on": 1583452800, | |
| "maturity_date": 1621555200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1277, | |
| "ttm": " 4m 29d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 110184.8, | |
| "current_ytm": 6.32, | |
| "display_name": "Nhpc Limited 8.85%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07369", | |
| "issue_size": null, | |
| "last_traded_on": 1588118400, | |
| "maturity_date": 1739232000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "4y 1m 20d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1129980, | |
| "current_ytm": 6.31, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MA2", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1792454400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "5y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1116877, | |
| "current_ytm": 6.31, | |
| "display_name": "Nhpc Limited 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE848E08136", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1868832000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 3m" | |
| }, | |
| { | |
| "coupon": 7.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1061120, | |
| "current_ytm": 6.31, | |
| "display_name": "Ntpc Limited 7.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KE8", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1787443200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 8m 1d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 1, | |
| "current_price": 1051598, | |
| "current_ytm": 6.31, | |
| "display_name": "Grasim Industries Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE047A08141", | |
| "issue_size": null, | |
| "last_traded_on": 1590451200, | |
| "maturity_date": 1713139200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1840, | |
| "ttm": "3y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1024911, | |
| "current_ytm": 6.31, | |
| "display_name": "Aditya Birla Finance Limited 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07FS2", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1632441600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": " 9m 2d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1089590, | |
| "current_ytm": 6.3083, | |
| "display_name": "Power Finance Corporation Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08CP0", | |
| "issue_size": null, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1736899200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 24d" | |
| }, | |
| { | |
| "coupon": 8.63, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1191965, | |
| "current_ytm": 6.3, | |
| "display_name": "Ntpc Limited 8.63%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JL5", | |
| "issue_size": null, | |
| "last_traded_on": 1490313600, | |
| "maturity_date": 1867276800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 2m 10d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1138887, | |
| "current_ytm": 6.3, | |
| "display_name": "Export Import Bank Of India Sr-T-02 8.12 Bd 25Ap31 Fvrs10Lac L.T.D 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FC4", | |
| "issue_size": null, | |
| "last_traded_on": 1595289600, | |
| "maturity_date": 1934841600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 4m 3d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1125.75, | |
| "current_ytm": 6.29, | |
| "display_name": "Tata Capital Financial Services Ltd 8.65%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LM5", | |
| "issue_size": 6003935000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1819238400, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 8m 4d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1073000, | |
| "current_ytm": 6.28, | |
| "display_name": "Nuclear Power Corporation Of India Limited 7.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08444", | |
| "issue_size": null, | |
| "last_traded_on": 1595980800, | |
| "maturity_date": 1923523200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "9y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 213580, | |
| "current_ytm": 6.28, | |
| "display_name": "Nhpc Limited 7.5%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AQ9", | |
| "issue_size": null, | |
| "last_traded_on": 1597881600, | |
| "maturity_date": 1822867200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 9m 15d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1095600, | |
| "current_ytm": 6.28, | |
| "display_name": "Housing And Urban Development Corporation Ltd 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AP2", | |
| "issue_size": null, | |
| "last_traded_on": 1526947200, | |
| "maturity_date": 1929484800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 2m" | |
| }, | |
| { | |
| "coupon": 8.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1066395, | |
| "current_ytm": 6.27, | |
| "display_name": "Export Import Bank Of India Sr-P-22 8.87 Bd 10Ot22 Fvrs10Lac L.T.D 8.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BQ3", | |
| "issue_size": null, | |
| "last_traded_on": 1574812800, | |
| "maturity_date": 1665360000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 9m 18d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.096542, | |
| "current_price": 1033479, | |
| "current_ytm": 6.26, | |
| "display_name": "Gail (India) Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE129A07198", | |
| "issue_size": null, | |
| "last_traded_on": 1589328000, | |
| "maturity_date": 1645574400, | |
| "rated_as_on": 1580083200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 2m 1d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1034255, | |
| "current_ytm": 6.24, | |
| "display_name": "Power Grid Corporation Of India Limited 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MF1", | |
| "issue_size": null, | |
| "last_traded_on": 1582848000, | |
| "maturity_date": 1642896000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 1m 1d" | |
| }, | |
| { | |
| "coupon": 6.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1027433, | |
| "current_ytm": 6.2, | |
| "display_name": "National Housing Bank 6.87 Bd 06Fb23 Fvrs10Lac L.T.D 6.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07033", | |
| "issue_size": null, | |
| "last_traded_on": 1522195200, | |
| "maturity_date": 1675641600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 15d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1082702, | |
| "current_ytm": 6.19, | |
| "display_name": "Aditya Birla Finance Limited 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE860H07GL5", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1703116800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 11m 29d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1146, | |
| "current_ytm": 6.19, | |
| "display_name": "L&T Finance Ltd 9.05%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07AL1", | |
| "issue_size": 3519947000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1807747200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 3m 24d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1092800, | |
| "current_ytm": 6.18, | |
| "display_name": "Power Finance Corporation Ltd 7.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07307", | |
| "issue_size": null, | |
| "last_traded_on": 1483488000, | |
| "maturity_date": 1826841600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 11m" | |
| }, | |
| { | |
| "coupon": 7.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1055475, | |
| "current_ytm": 6.18, | |
| "display_name": "Power Grid Corporation Of India Limited 7.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OG5", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1817769600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 7m 18d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1093595, | |
| "current_ytm": 6.18, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KC2", | |
| "issue_size": null, | |
| "last_traded_on": 1591833600, | |
| "maturity_date": 1779840000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1068682, | |
| "current_ytm": 6.18, | |
| "display_name": "Export Import Bank Of India Sr-P-30 8.93 Bd 12Dc22 Fvrs10Lac L.T.D 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BY7", | |
| "issue_size": null, | |
| "last_traded_on": 1582761600, | |
| "maturity_date": 1670803200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 20d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.123402, | |
| "current_price": 1206518, | |
| "current_ytm": 6.1775, | |
| "display_name": "Embassy Office Parks Reit Sr I Ncd 03Ju22 Fvrs10Lac L.T.D", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE041007019", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1654214400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 5m 12d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1082383, | |
| "current_ytm": 6.17, | |
| "display_name": "National Housing Bank Sr-V 8.01 Loa 30Ag23 Fvrs10Lac L.T.D 8.01%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07066", | |
| "issue_size": null, | |
| "last_traded_on": 1523404800, | |
| "maturity_date": 1693353600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 8m 8d" | |
| }, | |
| { | |
| "coupon": 7.63, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1070343, | |
| "current_ytm": 6.15, | |
| "display_name": "Power Finance Corporation Ltd 7.63%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08II2", | |
| "issue_size": null, | |
| "last_traded_on": 1604275200, | |
| "maturity_date": 1786665600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3650, | |
| "ttm": "5y 7m 23d" | |
| }, | |
| { | |
| "coupon": 10.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1072405, | |
| "current_ytm": 6.13, | |
| "display_name": "Sundaram Finance Limited 10.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE660A08BO7", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1664323200, | |
| "rated_as_on": 1581292800, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 9m 6d" | |
| }, | |
| { | |
| "coupon": 7.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1064768, | |
| "current_ytm": 6.13, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.33%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AC3", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1819411200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 8m 6d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1040255, | |
| "current_ytm": 6.12, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NO1", | |
| "issue_size": null, | |
| "last_traded_on": 1581292800, | |
| "maturity_date": 1650844800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2191, | |
| "ttm": "1y 4m 3d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1072102, | |
| "current_ytm": 6.11, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AA7", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1811635200, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 8d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1215941, | |
| "current_ytm": 6.11, | |
| "display_name": "Aditya Birla Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE860H07FP8", | |
| "issue_size": null, | |
| "last_traded_on": 1594252800, | |
| "maturity_date": 1621296000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 4m 26d" | |
| }, | |
| { | |
| "coupon": 7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.230537, | |
| "current_price": 1028800, | |
| "current_ytm": 6.11, | |
| "display_name": "Hindustan Petroleum Corporation Limited 7.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE094A08036", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1723593600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 7m 23d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1220679, | |
| "current_ytm": 6.11, | |
| "display_name": "Aditya Birla Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE860H07FR4", | |
| "issue_size": null, | |
| "last_traded_on": 1594598400, | |
| "maturity_date": 1624579200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1095, | |
| "ttm": " 6m 3d" | |
| }, | |
| { | |
| "coupon": 9.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1160800, | |
| "current_ytm": 6.1, | |
| "display_name": "Power Finance Corporation Ltd 9.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DU8", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1788220800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 8m 10d" | |
| }, | |
| { | |
| "coupon": 7.42, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1044227, | |
| "current_ytm": 6.09, | |
| "display_name": "Icici Bank Limited 7.42%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08TX0", | |
| "issue_size": null, | |
| "last_traded_on": 1598572800, | |
| "maturity_date": 1719446400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "3y 6m 5d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1206.35, | |
| "current_ytm": 6.09, | |
| "display_name": "L&T Finance Ltd 9.35%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07972", | |
| "issue_size": 1109148000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1082.56, | |
| "current_ytm": 6.07, | |
| "display_name": "L&T Finance Ltd 8.89%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE027E07956", | |
| "issue_size": 600691000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1710288000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 2m 20d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1078700, | |
| "current_ytm": 6.07, | |
| "display_name": "Nhpc Limited 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AC9", | |
| "issue_size": null, | |
| "last_traded_on": 1596672000, | |
| "maturity_date": 1812240000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1170, | |
| "current_ytm": 6.06, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.55%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE033L08270", | |
| "issue_size": 105500000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1894579200, | |
| "rated_as_on": 1578960000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "9y 23d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1027807, | |
| "current_ytm": 6.05, | |
| "display_name": "Fullerton India Credit Company Ltd 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07936", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1637539200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1091582, | |
| "current_ytm": 6.05, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07GS4", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1740355200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 2d" | |
| }, | |
| { | |
| "coupon": 8.66, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1079, | |
| "current_ytm": 6.04, | |
| "display_name": "L&T Finance Ltd 8.66%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE027E07AH9", | |
| "issue_size": 219008000, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1713139200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 3m 24d" | |
| }, | |
| { | |
| "coupon": 9.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1102903, | |
| "current_ytm": 6.03, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07MS4", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1719187200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 6m 2d" | |
| }, | |
| { | |
| "coupon": 9.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1040112, | |
| "current_ytm": 6.03, | |
| "display_name": "Lic Housing Finance Limited 9.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07BL0", | |
| "issue_size": null, | |
| "last_traded_on": 1601856000, | |
| "maturity_date": 1636588800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 20d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1014900, | |
| "current_ytm": 6.03, | |
| "display_name": "Power Grid Corporation Of India Limited 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1587081600, | |
| "maturity_date": 1608681600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": " 1d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1090332, | |
| "current_ytm": 6.02, | |
| "display_name": "Power Finance Corporation Ltd 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GU1", | |
| "issue_size": null, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 1733702400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 17d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 11122550, | |
| "current_ytm": 6.02, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.46%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07PC1", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1781481600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 5m 24d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1096929, | |
| "current_ytm": 6.02, | |
| "display_name": "Icici Bank Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08TS0", | |
| "issue_size": null, | |
| "last_traded_on": 1595376000, | |
| "maturity_date": 1743379200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 9d" | |
| }, | |
| { | |
| "coupon": 7.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1066585, | |
| "current_ytm": 6.01, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07AB5", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1813017600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 24d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1109283, | |
| "current_ytm": 6.01, | |
| "display_name": "Power Finance Corporation Ltd 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JY7", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1727222400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2011, | |
| "ttm": "3y 9m 3d" | |
| }, | |
| { | |
| "coupon": 9.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1038760, | |
| "current_ytm": 6, | |
| "display_name": "Fullerton India Credit Company Ltd 9.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07AI2", | |
| "issue_size": null, | |
| "last_traded_on": 1596153600, | |
| "maturity_date": 1638316800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1273, | |
| "ttm": " 11m 9d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1135, | |
| "current_ytm": 6, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.4%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07GU2", | |
| "issue_size": 905697000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1831420800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "7y 23d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1348812.5, | |
| "current_ytm": 5.9914, | |
| "display_name": "Power Grid Corporation Of India Limited 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HX4", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1697846400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "2y 9m 29d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1037177, | |
| "current_ytm": 5.99, | |
| "display_name": "Fullerton India Credit Company Ltd 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07AC5", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1672185600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 6d" | |
| }, | |
| { | |
| "coupon": 8.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 546930.5, | |
| "current_ytm": 5.99, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.43%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07NP8", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1741046400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 10d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1256500, | |
| "current_ytm": 5.99, | |
| "display_name": "Aditya Birla Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE860H07GE0", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1649376000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1260, | |
| "ttm": "1y 3m 17d" | |
| }, | |
| { | |
| "coupon": 8.5108, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1021308, | |
| "current_ytm": 5.975, | |
| "display_name": "Kotak Mahindra Investments Limited 8.5108%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE975F07GN1", | |
| "issue_size": null, | |
| "last_traded_on": 1591228800, | |
| "maturity_date": 1619654400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 727, | |
| "ttm": " 4m 7d" | |
| }, | |
| { | |
| "coupon": 7.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1095048, | |
| "current_ytm": 5.97, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07983", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1805587200, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 2m 27d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1103700, | |
| "current_ytm": 5.97, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.14%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08261", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1774396800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "5y 3m 3d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1385410, | |
| "current_ytm": 5.97, | |
| "display_name": "Power Grid Corporation Of India Limited 9.2%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07FR0", | |
| "issue_size": null, | |
| "last_traded_on": 1588723200, | |
| "maturity_date": 1710201600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "3y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1098000, | |
| "current_ytm": 5.96, | |
| "display_name": "Power Finance Corporation Ltd 8.01%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07372", | |
| "issue_size": null, | |
| "last_traded_on": 1510704000, | |
| "maturity_date": 1693353600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 8m 8d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1091700, | |
| "current_ytm": 5.96, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KX8", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1779235200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "5y 4m 28d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1082.02, | |
| "current_ytm": 5.95, | |
| "display_name": "Tata Capital Financial Services Ltd 8.5%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LK9", | |
| "issue_size": 3409175000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1724630400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 8m 4d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1004500, | |
| "current_ytm": 5.95, | |
| "display_name": "Idfc Infra Debt Fund Limited 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE246R07053", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1611792000, | |
| "rated_as_on": 1574985600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1847, | |
| "ttm": " 1m 6d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1119428, | |
| "current_ytm": 5.94, | |
| "display_name": "Power Finance Corporation Limited 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08CV8", | |
| "issue_size": null, | |
| "last_traded_on": 1596499200, | |
| "maturity_date": 1743292800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 3m 8d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1090.02, | |
| "current_ytm": 5.94, | |
| "display_name": "L&T Finance Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07AF3", | |
| "issue_size": 1859731000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1713139200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1089792, | |
| "current_ytm": 5.93, | |
| "display_name": "Export Import Bank Of India Sr-S-04 8.02 Bd 29Ot25 Fvrs10Lac L.T.D 8.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EQ7", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1761696000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 10m 7d" | |
| }, | |
| { | |
| "coupon": 8.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.149978, | |
| "current_price": 1090259, | |
| "current_ytm": 5.92, | |
| "display_name": "Hdfc Credila Financial Services Private Limited 8.62%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE539K07114", | |
| "issue_size": null, | |
| "last_traded_on": 1596758400, | |
| "maturity_date": 1718582400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 26d" | |
| }, | |
| { | |
| "coupon": 7.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1085256, | |
| "current_ytm": 5.91, | |
| "display_name": "Export Import Bank Of India Sr-T-06 7.62 Bd 01Sp26 Fvrs10Lac L.T.D 7.62%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FG5", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1788220800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 8m 10d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1098945, | |
| "current_ytm": 5.91, | |
| "display_name": "Hdfc Bank Limited 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE040A08369", | |
| "issue_size": null, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1789948800, | |
| "rated_as_on": 1578268800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 8m 30d" | |
| }, | |
| { | |
| "coupon": 7.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1106263, | |
| "current_ytm": 5.91, | |
| "display_name": "Power Grid Corporation Of India Limited 7.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OE0", | |
| "issue_size": null, | |
| "last_traded_on": 1595289600, | |
| "maturity_date": 1804550400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 2m 15d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1170, | |
| "current_ytm": 5.9, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SW9", | |
| "issue_size": 8516050000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1800230400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 27d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1068761, | |
| "current_ytm": 5.88, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LW8", | |
| "issue_size": null, | |
| "last_traded_on": 1587600000, | |
| "maturity_date": 1666224000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "1y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1084233, | |
| "current_ytm": 5.87, | |
| "display_name": "Export Import Bank Of India Sr-R-22 8.11 Bd 03Fb25 Fvrs10Lac L.T.D 8.11%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EK0", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1738540800, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 12d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1095500, | |
| "current_ytm": 5.86, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HY8", | |
| "issue_size": null, | |
| "last_traded_on": 1574121600, | |
| "maturity_date": 1827532800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 11m 8d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2593312.5, | |
| "current_ytm": 5.86, | |
| "display_name": "L&T Housing Finance Limited 9.2%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE476M07347", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1642118400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2555, | |
| "ttm": "1y 23d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1096656, | |
| "current_ytm": 5.86, | |
| "display_name": "Export Import Bank Of India Sr-S-06 8.1 Bd 19Nv25 Fvrs10Lac L.T.D 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08ES3", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1763510400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 10m 28d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1039100, | |
| "current_ytm": 5.85, | |
| "display_name": "Fullerton India Credit Company Ltd 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE535H07BD1", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1667520000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 10m 13d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1091016, | |
| "current_ytm": 5.85, | |
| "display_name": "Rural Electrification Corporation Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08930", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1744243200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 19d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1114870, | |
| "current_ytm": 5.85, | |
| "display_name": "Rural Electrification Corp\n8.75 Bd 12Jl25 Fvrs10Lac L.T.D 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08443", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1752278400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 6m 20d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1097210, | |
| "current_ytm": 5.83, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HW2", | |
| "issue_size": null, | |
| "last_traded_on": 1574726400, | |
| "maturity_date": 1827187200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1085155, | |
| "current_ytm": 5.83, | |
| "display_name": "Rural Electrification Corporation Limited 8.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08898", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1737590400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 1d" | |
| }, | |
| { | |
| "coupon": 7.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1078500, | |
| "current_ytm": 5.82, | |
| "display_name": "Power Grid Corporation Of India Limited 7.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OF7", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1813363200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "6y 5m 28d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1093602, | |
| "current_ytm": 5.82, | |
| "display_name": "Tata Capital Financial Services Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KK1", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1702944000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 11m 27d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 218393.8, | |
| "current_ytm": 5.81, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 9.25%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07HS4", | |
| "issue_size": null, | |
| "last_traded_on": 1588896000, | |
| "maturity_date": 1683158400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "2y 4m 12d" | |
| }, | |
| { | |
| "coupon": 8.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 13.272576, | |
| "current_ytm": 5.81, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.49%", | |
| "face_value": 12, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JP6", | |
| "issue_size": null, | |
| "last_traded_on": 1596672000, | |
| "maturity_date": 1742860800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1110353, | |
| "current_ytm": 5.81, | |
| "display_name": "Power Grid Corporation Of India Limited 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NK9", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1766448000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 1d" | |
| }, | |
| { | |
| "coupon": 9.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1060654, | |
| "current_ytm": 5.81, | |
| "display_name": "Rural Electrification Corporation Limited 9.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08807", | |
| "issue_size": null, | |
| "last_traded_on": 1603929600, | |
| "maturity_date": 1668816000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 10m 28d" | |
| }, | |
| { | |
| "coupon": 7.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1077148, | |
| "current_ytm": 5.8, | |
| "display_name": "Power Grid Corporation Of India Limited 7.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OC4", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1792281600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 9m 26d" | |
| }, | |
| { | |
| "coupon": 8.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 104080, | |
| "current_ytm": 5.77, | |
| "display_name": "Housing And Urban Development Corp. Ltd 8.09%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE031A09FF8", | |
| "issue_size": null, | |
| "last_traded_on": 1579219200, | |
| "maturity_date": 1639267200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 11m 20d" | |
| }, | |
| { | |
| "coupon": 8.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1098391, | |
| "current_ytm": 5.77, | |
| "display_name": "Power Finance Corporation Ltd 8.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08HD5", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1745020800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3684, | |
| "ttm": "4y 3m 28d" | |
| }, | |
| { | |
| "coupon": 8.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1090212, | |
| "current_ytm": 5.76, | |
| "display_name": "Rural Electrification Corporation Limited 8.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08906", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1738800000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 15d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1039700, | |
| "current_ytm": 5.76, | |
| "display_name": "National Housing Bank 7.19 Bd 14Dc22 Fvrs10Lac L.T.D 7.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07017", | |
| "issue_size": null, | |
| "last_traded_on": 1572998400, | |
| "maturity_date": 1670976000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 22d" | |
| }, | |
| { | |
| "coupon": 8.9508, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1100063, | |
| "current_ytm": 5.75, | |
| "display_name": "Pipeline Infrastructure Private Limited 8.9508%", | |
| "face_value": 1000000, | |
| "frequency": "Quarterly", | |
| "isin": "INE01XX07026", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1711065600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1795, | |
| "ttm": "3y 3m" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1107557, | |
| "current_ytm": 5.74, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KA6", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1777939200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 4m 13d" | |
| }, | |
| { | |
| "coupon": 7.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1149422, | |
| "current_ytm": 5.73, | |
| "display_name": "India Infrastructure Finance Company Limited 7.41%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07099", | |
| "issue_size": null, | |
| "last_traded_on": 1580947200, | |
| "maturity_date": 1984089600, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "11y 10m 24d" | |
| }, | |
| { | |
| "coupon": 6.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1035403, | |
| "current_ytm": 5.72, | |
| "display_name": "National Housing Bank Sr-Iv 6.89 Ncd 22Mr23 Fvrs10Lac L.T.D 6.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07058", | |
| "issue_size": null, | |
| "last_traded_on": 1571961600, | |
| "maturity_date": 1679443200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m" | |
| }, | |
| { | |
| "coupon": 8.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1098800, | |
| "current_ytm": 5.71, | |
| "display_name": "Rural Electrification Corporation Limited 8.11%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08963", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1759795200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 15d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 218122.4, | |
| "current_ytm": 5.7062, | |
| "display_name": "Nhpc Limited 7.5%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AP1", | |
| "issue_size": null, | |
| "last_traded_on": 1596758400, | |
| "maturity_date": 1791331200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "5y 9m 15d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1050, | |
| "current_ytm": 5.7, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SR9", | |
| "issue_size": 789950000, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1650240000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": "1y 3m 27d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1141946, | |
| "current_ytm": 5.69, | |
| "display_name": "Nuclear Power Corporation Of India Limited 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08170", | |
| "issue_size": null, | |
| "last_traded_on": 1589760000, | |
| "maturity_date": 1737590400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "4y 1m 1d" | |
| }, | |
| { | |
| "coupon": 7.42, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1059000, | |
| "current_ytm": 5.69, | |
| "display_name": "Power Finance Corporation Ltd 7.42%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KH0", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1731974400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 10m 28d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1094798, | |
| "current_ytm": 5.68, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MQ8", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1716768000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3288, | |
| "ttm": "3y 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.129669, | |
| "current_price": 1068768, | |
| "current_ytm": 5.67, | |
| "display_name": "Bharat Petroleum Corporation Ltd 8.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE029A08057", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1710115200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 2m 18d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1410540, | |
| "current_ytm": 5.67, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JX0", | |
| "issue_size": null, | |
| "last_traded_on": 1591056000, | |
| "maturity_date": 1719532800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "3y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.375, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1108447, | |
| "current_ytm": 5.67, | |
| "display_name": "Export Import Bank Of India Sr-S-02 8.375 Bd 24Jl25 Fvrs10Lac L.T.D 8.375%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EO2", | |
| "issue_size": null, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1753315200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 2d" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1043480, | |
| "current_ytm": 5.67, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HX0", | |
| "issue_size": null, | |
| "last_traded_on": 1570752000, | |
| "maturity_date": 1669766400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 8d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1085, | |
| "current_ytm": 5.67, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.01%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE033L07GO5", | |
| "issue_size": 541471000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1736812800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "4y 23d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1134845, | |
| "current_ytm": 5.65, | |
| "display_name": "Reliance Utilities And Power P. Ltd 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE936D07075", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1722556800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "3y 7m 11d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 215718.8, | |
| "current_ytm": 5.6479, | |
| "display_name": "Nhpc Limited 7.5%", | |
| "face_value": 200000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AO4", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1759795200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": "4y 9m 15d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1065806, | |
| "current_ytm": 5.64, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07SE1", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1736294400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "4y 17d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1067746, | |
| "current_ytm": 5.62, | |
| "display_name": "Lic Housing Finance Limited 7.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OL3", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1721692800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1765, | |
| "ttm": "3y 7m 1d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1077850, | |
| "current_ytm": 5.6, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RV7", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1720656000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 6m 19d" | |
| }, | |
| { | |
| "coupon": 8.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1083114, | |
| "current_ytm": 5.5954, | |
| "display_name": "Lic Housing Finance Limited 8.33%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OE8", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1717113600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1193679, | |
| "current_ytm": 5.59, | |
| "display_name": "Indian Railway Finance Corporation Ltd 8.48%", | |
| "face_value": 0, | |
| "frequency": "Annually", | |
| "isin": "INE053F07629", | |
| "issue_size": null, | |
| "last_traded_on": 1586736000, | |
| "maturity_date": 1858377600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 30d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1077024, | |
| "current_ytm": 5.59, | |
| "display_name": "Power Finance Corporation Ltd 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KD9", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1717459200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 13d" | |
| }, | |
| { | |
| "coupon": 9.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1125408, | |
| "current_ytm": 5.58, | |
| "display_name": "Export Import Bank Of India Sr-Q-29 9.6 Bd 07Fb24 Fvrs10Lac L.T.D 9.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DM8", | |
| "issue_size": null, | |
| "last_traded_on": 1596153600, | |
| "maturity_date": 1707264000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 1m 16d" | |
| }, | |
| { | |
| "coupon": 8.79, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1093045, | |
| "current_ytm": 5.57, | |
| "display_name": "Lic Housing Finance Limited 8.79%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NY8", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1709596800, | |
| "rated_as_on": 1571184000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 2m 12d" | |
| }, | |
| { | |
| "coupon": 8.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1128934, | |
| "current_ytm": 5.57, | |
| "display_name": "Export Import Bank Of India Sr-P-39 8.87 Bd 13Mr25 Fvrs10Lac L.T.D 8.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CH0", | |
| "issue_size": null, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1741824000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "4y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1108603, | |
| "current_ytm": 5.57, | |
| "display_name": "Power Finance Corporation Ltd 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GV9", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1735344000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "4y 6d" | |
| }, | |
| { | |
| "coupon": 9.08, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1097484, | |
| "current_ytm": 5.56, | |
| "display_name": "Lic Housing Finance Limited 9.08%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NE0", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1697500800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 9m 25d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1434246.25, | |
| "current_ytm": 5.56, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KK5", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1760832000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "4y 9m 27d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1041100, | |
| "current_ytm": 5.56, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09IC2", | |
| "issue_size": null, | |
| "last_traded_on": 1582761600, | |
| "maturity_date": 1670976000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 22d" | |
| }, | |
| { | |
| "coupon": 7.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1063788, | |
| "current_ytm": 5.55, | |
| "display_name": "Rec Limited 7.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CF8", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1732579200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 11m 4d" | |
| }, | |
| { | |
| "coupon": 9.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1161989, | |
| "current_ytm": 5.55, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.09%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HM3", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1774742400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 3m 7d" | |
| }, | |
| { | |
| "coupon": 9.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1162054, | |
| "current_ytm": 5.55, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.09%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HN1", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1774915200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 3m 9d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1080751, | |
| "current_ytm": 5.55, | |
| "display_name": "Rec Limited 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BV7", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1719273600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 6m 3d" | |
| }, | |
| { | |
| "coupon": 7.07, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1075500, | |
| "current_ytm": 5.54, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-1A 7.07 Bd 25Fb26 Fvrs10Lac L.T.D 7.07%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F07016", | |
| "issue_size": null, | |
| "last_traded_on": 1584489600, | |
| "maturity_date": 1771977600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 2m 3d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 2541092.5, | |
| "current_ytm": 5.54, | |
| "display_name": "L&T Finance Limited 8.25%", | |
| "face_value": 2500000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07642", | |
| "issue_size": null, | |
| "last_traded_on": 1604275200, | |
| "maturity_date": 1624233600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1181, | |
| "ttm": " 5m 30d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1097291, | |
| "current_ytm": 5.52, | |
| "display_name": "Indian Railway Finance Corporation\n8.65 Loa 15Jn24 Fvrs10Lac L.T.D 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09FV8", | |
| "issue_size": null, | |
| "last_traded_on": 1596153600, | |
| "maturity_date": 1705276800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "3y 24d" | |
| }, | |
| { | |
| "coupon": 9.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1127321, | |
| "current_ytm": 5.52, | |
| "display_name": "Rural Electrification Corporation Limited 9.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1724544000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 3d" | |
| }, | |
| { | |
| "coupon": 9.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1090944, | |
| "current_ytm": 5.51, | |
| "display_name": "Lic Housing Finance Limited 9.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NI1", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1686009600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1673, | |
| "ttm": "2y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.009908, | |
| "current_price": 1018300, | |
| "current_ytm": 5.51, | |
| "display_name": "Tata Sons Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE895D08881", | |
| "issue_size": null, | |
| "last_traded_on": 1593475200, | |
| "maturity_date": 1616457600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1160, | |
| "ttm": " 3m 1d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1127201, | |
| "current_ytm": 5.51, | |
| "display_name": "Icici Bank Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE090A08TO9", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1725408000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 13d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1029934, | |
| "current_ytm": 5.5, | |
| "display_name": "Export Import Bank Of India Sr- N-28 9.15 Bd 30Mr21 Fvrs10Lac L.T.D 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08977", | |
| "issue_size": null, | |
| "last_traded_on": 1589846400, | |
| "maturity_date": 1617062400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 8d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.10161, | |
| "current_price": 1250446, | |
| "current_ytm": 5.5, | |
| "display_name": "Bajaj Housing Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE377Y07052", | |
| "issue_size": null, | |
| "last_traded_on": 1597881600, | |
| "maturity_date": 1649116800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1373, | |
| "ttm": "1y 3m 14d" | |
| }, | |
| { | |
| "coupon": 9.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1129318, | |
| "current_ytm": 5.5, | |
| "display_name": "Power Finance Corporation Ltd 9.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GG0", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1724716800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 5d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 29190, | |
| "current_ytm": 5.5, | |
| "display_name": "Rural Electrification Corporation Ltd 8.25%", | |
| "face_value": 30000, | |
| "frequency": "At maturity", | |
| "isin": "INE020B08484", | |
| "issue_size": 2685300000, | |
| "last_traded_on": 1596412800, | |
| "maturity_date": 1612310400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 1m 12d" | |
| }, | |
| { | |
| "coupon": 9.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1054572, | |
| "current_ytm": 5.5, | |
| "display_name": "Power Finance Corporation Ltd 9.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08EO9", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1649980800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3670, | |
| "ttm": "1y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1099477, | |
| "current_ytm": 5.5, | |
| "display_name": "Export Import Bank Of India Sr-R-23 8.15 Bd 05Mr25 Fvrs10Lac L.T.D 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EL8", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1741132800, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 11d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1129025, | |
| "current_ytm": 5.49, | |
| "display_name": "Reliance Jio Infocomm Limited 9.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L08060", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1737417600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 30d" | |
| }, | |
| { | |
| "coupon": 8.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1117847, | |
| "current_ytm": 5.48, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JX0", | |
| "issue_size": null, | |
| "last_traded_on": 1604880000, | |
| "maturity_date": 1765756800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 11m 23d" | |
| }, | |
| { | |
| "coupon": 7.07, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1073877, | |
| "current_ytm": 5.47, | |
| "display_name": "Housing And Urban Development Corporation Ltd 7.07%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AJ5", | |
| "issue_size": null, | |
| "last_traded_on": 1586995200, | |
| "maturity_date": 1759276800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 9d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1153894, | |
| "current_ytm": 5.47, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LZ1", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1760918400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": "4y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1117347, | |
| "current_ytm": 5.46, | |
| "display_name": "Export Import Bank Of India Sr-S-08 8.18 Bd 07Dc25 Fvrs10Lac L.T.D 8.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08EU9", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1765065600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 11m 15d" | |
| }, | |
| { | |
| "coupon": 8.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1110000, | |
| "current_ytm": 5.46, | |
| "display_name": "Rural Electrification Corporation Limited 8.57%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08880", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1734739200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 11m 29d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1041500, | |
| "current_ytm": 5.42, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GL7", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1651017600, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4748, | |
| "ttm": "1y 4m 5d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.31514, | |
| "current_price": 1087871, | |
| "current_ytm": 5.42, | |
| "display_name": "State Bank Of India 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE062A08207", | |
| "issue_size": null, | |
| "last_traded_on": 1596412800, | |
| "maturity_date": 1877299200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "8y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.323719, | |
| "current_price": 1120595, | |
| "current_ytm": 5.41, | |
| "display_name": "Axis Bank Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE238A08351", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1733356800, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 11m 13d" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1422533.75, | |
| "current_ytm": 5.41, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HN5", | |
| "issue_size": null, | |
| "last_traded_on": 1594771200, | |
| "maturity_date": 1751932800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "4y 6m 16d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1104036, | |
| "current_ytm": 5.41, | |
| "display_name": "Power Grid Corporation Of India Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MJ3", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1741478400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 2m 15d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1104107, | |
| "current_ytm": 5.41, | |
| "display_name": "Power Grid Corporation Of India Limited 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MG9", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1737590400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 1m 1d" | |
| }, | |
| { | |
| "coupon": 9.38, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1120514, | |
| "current_ytm": 5.4048, | |
| "display_name": "Mahanagar Telephone Nigam Limited 9.38%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE153A08022", | |
| "issue_size": null, | |
| "last_traded_on": 1597795200, | |
| "maturity_date": 1701734400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 11m 13d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1234836, | |
| "current_ytm": 5.4, | |
| "display_name": "Bajaj Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE296A07QQ5", | |
| "issue_size": null, | |
| "last_traded_on": 1598832000, | |
| "maturity_date": 1649116800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1222, | |
| "ttm": "1y 3m 14d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1082901, | |
| "current_ytm": 5.4, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.54%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08147", | |
| "issue_size": null, | |
| "last_traded_on": 1589846400, | |
| "maturity_date": 1678838400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 21d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.383284, | |
| "current_price": 1045062, | |
| "current_ytm": 5.4, | |
| "display_name": "Sbi Cards & Payment Services Limited 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018E08185", | |
| "issue_size": null, | |
| "last_traded_on": 1603411200, | |
| "maturity_date": 1678320000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1179, | |
| "ttm": "2y 2m 15d" | |
| }, | |
| { | |
| "coupon": 7.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1039118, | |
| "current_ytm": 5.4, | |
| "display_name": "Rec Limited 7.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CH4", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1680220800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1178, | |
| "ttm": "2y 3m 9d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1385582.5, | |
| "current_ytm": 5.39, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JW2", | |
| "issue_size": null, | |
| "last_traded_on": 1590624000, | |
| "maturity_date": 1687910400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "2y 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1083520, | |
| "current_ytm": 5.39, | |
| "display_name": "Power Finance Corporation Ltd 8.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FN8", | |
| "issue_size": null, | |
| "last_traded_on": 1596585600, | |
| "maturity_date": 1679097600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 24d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1097724, | |
| "current_ytm": 5.35, | |
| "display_name": "Bajaj Finance Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QR3", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1704412800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1835, | |
| "ttm": "3y 14d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 918311, | |
| "current_ytm": 5.33, | |
| "display_name": "Sundaram Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE660A07PV4", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1649116800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1208, | |
| "ttm": "1y 3m 14d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1095225, | |
| "current_ytm": 5.33, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09FS4", | |
| "issue_size": null, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1703548800, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "3y 4d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1150800, | |
| "current_ytm": 5.31, | |
| "display_name": "Sundaram Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE660A07QA6", | |
| "issue_size": null, | |
| "last_traded_on": 1597363200, | |
| "maturity_date": 1656374400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 6m 6d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1051689, | |
| "current_ytm": 5.31, | |
| "display_name": "Lic Housing Finance Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MS2", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1671148800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 11m 24d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1184, | |
| "current_ytm": 5.27, | |
| "display_name": "L&T Finance Ltd 8.7%", | |
| "face_value": 1000, | |
| "frequency": "Monthly", | |
| "isin": "INE027E07AN7", | |
| "issue_size": 174848000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1807747200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "6y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1066616, | |
| "current_ytm": 5.27, | |
| "display_name": "Power Finance Corporation Ltd 8.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08FT5", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1686700800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m 23d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1038585, | |
| "current_ytm": 5.25, | |
| "display_name": "Reliance Utilities And Power Private Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE936D07125", | |
| "issue_size": null, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 1653609600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1732, | |
| "ttm": "1y 5m 5d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1044033, | |
| "current_ytm": 5.25, | |
| "display_name": "Bajaj Finance Limited 7.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QX1", | |
| "issue_size": null, | |
| "last_traded_on": 1595376000, | |
| "maturity_date": 1668038400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1092, | |
| "ttm": "1y 10m 19d" | |
| }, | |
| { | |
| "coupon": 9.224, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1058640, | |
| "current_ytm": 5.25, | |
| "display_name": "Bajaj Finance Limited 9.224%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QP7", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1651708800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1267, | |
| "ttm": "1y 4m 13d" | |
| }, | |
| { | |
| "coupon": 7.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1093, | |
| "current_ytm": 5.24, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.29%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AS6", | |
| "issue_size": 1053542000, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1773532800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 21d" | |
| }, | |
| { | |
| "coupon": 9.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1126163, | |
| "current_ytm": 5.23, | |
| "display_name": "Export Import Bank Of India Sr-Q-24 9.58 Bd 16Dc23 Fvrs10Lac L.T.D 9.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08DH8", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1702684800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 11m 24d" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1047453, | |
| "current_ytm": 5.23, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1588032000, | |
| "maturity_date": 1670284800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 14d" | |
| }, | |
| { | |
| "coupon": 7.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.129669, | |
| "current_price": 1055393, | |
| "current_ytm": 5.23, | |
| "display_name": "Bharat Petroleum Corporation Ltd 7.69%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE029A08040", | |
| "issue_size": null, | |
| "last_traded_on": 1596412800, | |
| "maturity_date": 1673827200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 25d" | |
| }, | |
| { | |
| "coupon": 8.685, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1055887, | |
| "current_ytm": 5.2, | |
| "display_name": "Lic Housing Finance Limited 8.685%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NS0", | |
| "issue_size": null, | |
| "last_traded_on": 1595808000, | |
| "maturity_date": 1650326400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1194, | |
| "ttm": "1y 3m 28d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1225378, | |
| "current_ytm": 5.2, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE774D07SH0", | |
| "issue_size": null, | |
| "last_traded_on": 1594598400, | |
| "maturity_date": 1626998400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1099, | |
| "ttm": " 7m 1d" | |
| }, | |
| { | |
| "coupon": 7.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1201200, | |
| "current_ytm": 5.18, | |
| "display_name": "India Infrastructure Finance Company Limited 7.41%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07123", | |
| "issue_size": null, | |
| "last_traded_on": 1588636800, | |
| "maturity_date": 1984608000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "11y 10m 30d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1129496, | |
| "current_ytm": 5.17, | |
| "display_name": "Reliance Jio Infocomm Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L08037", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1718496000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 5m 25d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1113, | |
| "current_ytm": 5.15, | |
| "display_name": "Tata Capital Housing Finance Ltd 8.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07GQ0", | |
| "issue_size": 2348032000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1736812800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "4y 23d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1139900, | |
| "current_ytm": 5.12, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09IA6", | |
| "issue_size": null, | |
| "last_traded_on": 1588118400, | |
| "maturity_date": 1828051200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 11m 14d" | |
| }, | |
| { | |
| "coupon": 8.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1081497, | |
| "current_ytm": 5.12, | |
| "display_name": "Rural Electrification Corporation Limited 8.82%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08831", | |
| "issue_size": null, | |
| "last_traded_on": 1605657600, | |
| "maturity_date": 1681257600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 21d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1095.45, | |
| "current_ytm": 5.11, | |
| "display_name": "Tata Capital Financial Services Ltd 8.9%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KF1", | |
| "issue_size": 14570710000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1695772800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 9m 5d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1020425, | |
| "current_ytm": 5.11, | |
| "display_name": "Tata Capital Housing Finance Limited 8.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE033L07EO0", | |
| "issue_size": null, | |
| "last_traded_on": 1599696000, | |
| "maturity_date": 1618185600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 3m 21d" | |
| }, | |
| { | |
| "coupon": 7.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1049500, | |
| "current_ytm": 5.1, | |
| "display_name": "India Infrastructure Finance Company Ltd 7.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07107", | |
| "issue_size": 2140000000, | |
| "last_traded_on": 1588118400, | |
| "maturity_date": 1668988800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 10m 30d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1375810, | |
| "current_ytm": 5.09, | |
| "display_name": "Power Grid Corporation Of India Limited 8.8%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GC0", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1695945600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5113, | |
| "ttm": "2y 9m 7d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1074985, | |
| "current_ytm": 5.07, | |
| "display_name": "Power Grid Corporation Of India Limited 7.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08569", | |
| "issue_size": null, | |
| "last_traded_on": 1604275200, | |
| "maturity_date": 1721001600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 6m 23d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1054420, | |
| "current_ytm": 5.07, | |
| "display_name": "Hdb Financial Services Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CO6", | |
| "issue_size": null, | |
| "last_traded_on": 1597622400, | |
| "maturity_date": 1647216000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m 20d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.323719, | |
| "current_price": 1068104, | |
| "current_ytm": 5.06, | |
| "display_name": "Axis Bank Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE238A08401", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1697760000, | |
| "rated_as_on": 1579737600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1026560, | |
| "current_ytm": 5.06, | |
| "display_name": "Power Finance Corporation Ltd 8.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08ID3", | |
| "issue_size": null, | |
| "last_traded_on": 1590105600, | |
| "maturity_date": 1619481600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 5d" | |
| }, | |
| { | |
| "coupon": 7.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1094977, | |
| "current_ytm": 5.05, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07785", | |
| "issue_size": null, | |
| "last_traded_on": 1589500800, | |
| "maturity_date": 1755734400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 30d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1036834, | |
| "current_ytm": 5.05, | |
| "display_name": "Bajaj Finance Limited 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07NQ2", | |
| "issue_size": null, | |
| "last_traded_on": 1595203200, | |
| "maturity_date": 1642636800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 29d" | |
| }, | |
| { | |
| "coupon": 7.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1036393, | |
| "current_ytm": 5.05, | |
| "display_name": "Power Finance Corporation Ltd 7.28%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JB5", | |
| "issue_size": null, | |
| "last_traded_on": 1599696000, | |
| "maturity_date": 1654819200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 5m 19d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1144213, | |
| "current_ytm": 5.05, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LQ0", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1725408000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 8m 13d" | |
| }, | |
| { | |
| "coupon": 7.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1040288, | |
| "current_ytm": 5.03, | |
| "display_name": "Lic Housing Finance Limited 7.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07LZ9", | |
| "issue_size": null, | |
| "last_traded_on": 1599436800, | |
| "maturity_date": 1654819200, | |
| "rated_as_on": 1560729600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 5m 19d" | |
| }, | |
| { | |
| "coupon": 7.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1027367, | |
| "current_ytm": 5.02, | |
| "display_name": "Ultratech Cement Limited 7.57%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G07182", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1628208000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": " 7m 15d" | |
| }, | |
| { | |
| "coupon": 7.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1051860, | |
| "current_ytm": 5, | |
| "display_name": "Hdb Financial Services Limited 7.57%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CY5", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1676505600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "2y 1m 25d" | |
| }, | |
| { | |
| "coupon": 6.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1041913, | |
| "current_ytm": 5, | |
| "display_name": "Air India Assets Holding Limited 6.99%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE0AED08011", | |
| "issue_size": null, | |
| "last_traded_on": 1602201600, | |
| "maturity_date": 1671148800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1185, | |
| "ttm": "1y 11m 24d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1295046.25, | |
| "current_ytm": 5, | |
| "display_name": "Power Grid Corporation Of India Limited 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HV8", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1634774400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": " 9m 29d" | |
| }, | |
| { | |
| "coupon": 8.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1085289, | |
| "current_ytm": 5, | |
| "display_name": "Reliance Utilities And Power P. Ltd 8.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE936D07067", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1682467200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 4d" | |
| }, | |
| { | |
| "coupon": 7.405, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1036658, | |
| "current_ytm": 5, | |
| "display_name": "Nabha Power Limited 7.405%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE445L08391", | |
| "issue_size": null, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 1650412800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 873, | |
| "ttm": "1y 3m 29d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1304948.75, | |
| "current_ytm": 5, | |
| "display_name": "Power Grid Corporation Of India Ltd 8.9%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07GM9", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1645747200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "1y 2m 3d" | |
| }, | |
| { | |
| "coupon": 6.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1040.1, | |
| "current_ytm": 4.99, | |
| "display_name": "Rural Electrification Corporation Ltd 6.88%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GY2", | |
| "issue_size": 813538000, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1679702400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 3d" | |
| }, | |
| { | |
| "coupon": 6.82, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1293.99, | |
| "current_ytm": -4.99, | |
| "display_name": "Jawaharlal Nehru Port Trust 6.82%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE281G07053", | |
| "issue_size": 413196000, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1679702400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "brickwork", | |
| "score": 5, | |
| "tenure": 3651, | |
| "ttm": "2y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1055367, | |
| "current_ytm": 4.98, | |
| "display_name": "Power Finance Corporation Ltd 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KB3", | |
| "issue_size": null, | |
| "last_traded_on": 1595548800, | |
| "maturity_date": 1653609600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5m 5d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1253243, | |
| "current_ytm": 4.97, | |
| "display_name": "Aditya Birla Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE860H07GD2", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1633996800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1082, | |
| "ttm": " 9m 20d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.230537, | |
| "current_price": 1093436, | |
| "current_ytm": 4.97, | |
| "display_name": "Hindustan Petroleum Corporation Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE094A08028", | |
| "issue_size": null, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1714003200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1125, | |
| "current_ytm": 4.96, | |
| "display_name": "L&T Finance Ltd 9.25%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07931", | |
| "issue_size": 2356189000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1710288000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 2m 20d" | |
| }, | |
| { | |
| "coupon": 7.03, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1299.99, | |
| "current_ytm": -4.96, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.03%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07873", | |
| "issue_size": 976154000, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1679961600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 6d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1081276, | |
| "current_ytm": 4.95, | |
| "display_name": "Nhpc Limited 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07997", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1717632000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "3y 5m 15d" | |
| }, | |
| { | |
| "coupon": 7.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1074990, | |
| "current_ytm": 4.95, | |
| "display_name": "National Housing Bank 7.05 Loa 18Dc24 Fvrs10Lac L.T.D 7.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE557F08FG1", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1734480000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 11m 26d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1076912, | |
| "current_ytm": 4.95, | |
| "display_name": "Lic Housing Finance Limited 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DX1", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1684627200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 4m 29d" | |
| }, | |
| { | |
| "coupon": 9.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1016476, | |
| "current_ytm": 4.95, | |
| "display_name": "Export Import Bank Of India 9.15 Bd 18Mr21 Fvrs10Lac L.T.D 9.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08951", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1616025600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 24d" | |
| }, | |
| { | |
| "coupon": 9.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1144400, | |
| "current_ytm": 4.94, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 9.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JO9", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1726963200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 9m" | |
| }, | |
| { | |
| "coupon": 7.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1095.2, | |
| "current_ytm": 4.92, | |
| "display_name": "Rural Electrification Corporation Ltd 7.14%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JQ2", | |
| "issue_size": 546816000, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1762300800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 10m 14d" | |
| }, | |
| { | |
| "coupon": 8.13, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1082264, | |
| "current_ytm": 4.91, | |
| "display_name": "Power Grid Corporation Of India Limited 8.13%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07NP8", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1682380800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 4m 3d" | |
| }, | |
| { | |
| "coupon": 9.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1110682, | |
| "current_ytm": 4.91, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RJ2", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1700438400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 10m 29d" | |
| }, | |
| { | |
| "coupon": 7.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1086098, | |
| "current_ytm": 4.9, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 20 C 7.69 Loa 29My24 Fvrs10Lac L.T.D 7.69%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BK1", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1716940800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 5m 7d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1048800, | |
| "current_ytm": 4.9, | |
| "display_name": "Hdb Financial Services Limited 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CW9", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1668816000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 10m 28d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1048837, | |
| "current_ytm": 4.9, | |
| "display_name": "Hdb Financial Services Limited 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CX7", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1671753600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1124, | |
| "ttm": "2y 1d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1082533, | |
| "current_ytm": 4.8979, | |
| "display_name": "Reliance Ports & Terminals Ltd 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE941D07133", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1686528000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m 21d" | |
| }, | |
| { | |
| "coupon": 8.76, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1089889, | |
| "current_ytm": 4.89, | |
| "display_name": "Export Import Bank Of India Sr-P-36 8.76 Bd 14Fb23 Fvrs10Lac L.T.D 8.76%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CE7", | |
| "issue_size": null, | |
| "last_traded_on": 1596758400, | |
| "maturity_date": 1676332800, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 23d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 1069460, | |
| "current_ytm": 4.89, | |
| "display_name": "Icici Bank Ltd 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE090A08TU6", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1696636800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": "2y 9m 15d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1089400, | |
| "current_ytm": 4.87, | |
| "display_name": "Export Import Bank Of India Sr-P-34 8.83 Bd 09Jn23 Fvrs10Lac L.T.D 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CC1", | |
| "issue_size": null, | |
| "last_traded_on": 1595894400, | |
| "maturity_date": 1673222400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 18d" | |
| }, | |
| { | |
| "coupon": 7.94, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1078297, | |
| "current_ytm": 4.87, | |
| "display_name": "Export Import Bank Of India Sr-Q-05 7.94 Bd 22My23 Fvrs10Lac L.T.D 7.94%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CO6", | |
| "issue_size": null, | |
| "last_traded_on": 1596758400, | |
| "maturity_date": 1684713600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 5m" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1069802, | |
| "current_ytm": 4.86, | |
| "display_name": "Reliance Jio Infocomm Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L07088", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1680998400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 3m 18d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1097213, | |
| "current_ytm": 4.85, | |
| "display_name": "Export Import Bank Of India Sr-Q-07 8.5 Bd 08Jl23 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CQ1", | |
| "issue_size": null, | |
| "last_traded_on": 1596585600, | |
| "maturity_date": 1688774400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 6m 16d" | |
| }, | |
| { | |
| "coupon": 6.91, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1038656, | |
| "current_ytm": 4.85, | |
| "display_name": "Nhpc Limited 6.91%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07AH8", | |
| "issue_size": null, | |
| "last_traded_on": 1599696000, | |
| "maturity_date": 1663200000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 8m 24d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1246189, | |
| "current_ytm": 4.85, | |
| "display_name": "Tata Capital Financial Services Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE306N07KH7", | |
| "issue_size": null, | |
| "last_traded_on": 1600214400, | |
| "maturity_date": 1635206400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 10m 4d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1096830, | |
| "current_ytm": 4.84, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07603", | |
| "issue_size": null, | |
| "last_traded_on": 1596412800, | |
| "maturity_date": 1679702400, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 3d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 1, | |
| "current_price": 1040977, | |
| "current_ytm": 4.83, | |
| "display_name": "Grasim Industries Limited 7.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE047A08133", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1649980800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1116, | |
| "ttm": "1y 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1043117, | |
| "current_ytm": 4.825, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SC1", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1650326400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1461, | |
| "ttm": "1y 3m 28d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1050109, | |
| "current_ytm": 4.82, | |
| "display_name": "Lic Housing Finance Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OH1", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1669075200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": "1y 11m" | |
| }, | |
| { | |
| "coupon": 8.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1091651, | |
| "current_ytm": 4.82, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.56%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08139", | |
| "issue_size": null, | |
| "last_traded_on": 1597190400, | |
| "maturity_date": 1679097600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 24d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1095338, | |
| "current_ytm": 4.82, | |
| "display_name": "Export Import Bank Of India Sr-P-40 8.8 Bd 15Mr23 Fvrs10Lac L.T.D 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CI8", | |
| "issue_size": null, | |
| "last_traded_on": 1596585600, | |
| "maturity_date": 1678838400, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 21d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1077124, | |
| "current_ytm": 4.82, | |
| "display_name": "Lic Housing Finance Limited 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07CY1", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1663113600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 8m 23d" | |
| }, | |
| { | |
| "coupon": 8.96, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1400.25, | |
| "current_ytm": 4.81, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.96%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AH9", | |
| "issue_size": 415379000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1050315, | |
| "current_ytm": 4.8, | |
| "display_name": "Hdb Financial Services Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CS7", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1661385600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 8m 3d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.117725, | |
| "current_price": 1077000, | |
| "current_ytm": 4.8, | |
| "display_name": "Larsen And Toubro Limited 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018A08AJ0", | |
| "issue_size": null, | |
| "last_traded_on": 1597104000, | |
| "maturity_date": 1649635200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 3m 20d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1387125, | |
| "current_ytm": 4.8, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KI9", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1697673600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4017, | |
| "ttm": "2y 9m 27d" | |
| }, | |
| { | |
| "coupon": 7.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1102.5, | |
| "current_ytm": 4.8, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.02%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AL1", | |
| "issue_size": 1172091000, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1770508800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 1m 17d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1225245, | |
| "current_ytm": 4.8, | |
| "display_name": "Lic Housing Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE115A07MX2", | |
| "issue_size": null, | |
| "last_traded_on": 1592524800, | |
| "maturity_date": 1616630400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1109, | |
| "ttm": " 3m 3d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1284084, | |
| "current_ytm": 4.8, | |
| "display_name": "Bajaj Finance Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE296A07QN2", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1662076800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1449, | |
| "ttm": "1y 8m 11d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 1049915, | |
| "current_ytm": 4.8, | |
| "display_name": "Sundaram Finance Limited 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Monthly", | |
| "isin": "INE660A07QE8", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1667779200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1097, | |
| "ttm": "1y 10m 16d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1049900, | |
| "current_ytm": 4.78, | |
| "display_name": "Power Finance Corporation Ltd 7.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JF6", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1669075200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 11m" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1100547, | |
| "current_ytm": 4.78, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JD2", | |
| "issue_size": null, | |
| "last_traded_on": 1594598400, | |
| "maturity_date": 1680566400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 13d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1376.75, | |
| "current_ytm": 4.77, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.75%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07313", | |
| "issue_size": 2579621000, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 2015366400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.009908, | |
| "current_price": 1018700, | |
| "current_ytm": 4.76, | |
| "display_name": "Tata Sons Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE895D08899", | |
| "issue_size": null, | |
| "last_traded_on": 1598313600, | |
| "maturity_date": 1616544000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1160, | |
| "ttm": " 3m 2d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 954411, | |
| "current_ytm": 4.75, | |
| "display_name": "Kotak Mahindra Prime Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE916DA7PU0", | |
| "issue_size": null, | |
| "last_traded_on": 1598227200, | |
| "maturity_date": 1630022400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1144, | |
| "ttm": " 8m 5d" | |
| }, | |
| { | |
| "coupon": 7.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1051541, | |
| "current_ytm": 4.75, | |
| "display_name": "Housing And Urban Development Corporation Limited 7.62%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08723", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1657843200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1121, | |
| "ttm": "1y 6m 23d" | |
| }, | |
| { | |
| "coupon": 7.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1100.01, | |
| "current_ytm": 4.75, | |
| "display_name": "Ntpc Ltd 7.11%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JR2", | |
| "issue_size": 1083767000, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1759622400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 13d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1377.7, | |
| "current_ytm": 4.75, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.55%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07404", | |
| "issue_size": 1259825000, | |
| "last_traded_on": 1591920000, | |
| "maturity_date": 2027030400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 5d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.257328, | |
| "current_price": 761484.418456, | |
| "current_ytm": 4.75, | |
| "display_name": "Sundaram Finance Limited", | |
| "face_value": 821011, | |
| "frequency": "At maturity", | |
| "isin": "INE660A07PR2", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1654819200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1389, | |
| "ttm": "1y 5m 19d" | |
| }, | |
| { | |
| "coupon": 7.445, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1053333, | |
| "current_ytm": 4.75, | |
| "display_name": "Lic Housing Finance Limited 7.445%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OJ7", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1673568000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1222, | |
| "ttm": "2y 22d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 328140, | |
| "current_ytm": 4.75, | |
| "display_name": "Power Grid Corporation Of India Limited 7.49%", | |
| "face_value": 300000, | |
| "frequency": "Annually", | |
| "isin": "INE752E08593", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1729814400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": "3y 10m 3d" | |
| }, | |
| { | |
| "coupon": 7.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1050526, | |
| "current_ytm": 4.73, | |
| "display_name": "Rec Limited 7.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CG6", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1672444800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1101, | |
| "ttm": "2y 9d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1056656, | |
| "current_ytm": 4.73, | |
| "display_name": "Kotak Mahindra Bank Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE237A08932", | |
| "issue_size": null, | |
| "last_traded_on": 1597622400, | |
| "maturity_date": 1648598400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 3m 8d" | |
| }, | |
| { | |
| "coupon": 7.42, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1043460, | |
| "current_ytm": 4.72, | |
| "display_name": "Lic Housing Finance Limited 7.42%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MG7", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1657843200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1820, | |
| "ttm": "1y 6m 23d" | |
| }, | |
| { | |
| "coupon": 9.4857, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1054600, | |
| "current_ytm": 4.72, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 9.4857%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SM0", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1645488000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1191, | |
| "ttm": "1y 2m" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1140, | |
| "current_ytm": 4.72, | |
| "display_name": "Rural Electrification Corporation Ltd 7.04%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GZ9", | |
| "issue_size": 497108000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1837555200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 3d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1103324, | |
| "current_ytm": 4.72, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07BB3", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1709078400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "3y 2m 6d" | |
| }, | |
| { | |
| "coupon": 7.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1065571, | |
| "current_ytm": 4.72, | |
| "display_name": "Power Finance Corporation Ltd 7.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JO8", | |
| "issue_size": null, | |
| "last_traded_on": 1603411200, | |
| "maturity_date": 1671494400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1736, | |
| "ttm": "1y 11m 28d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1118392, | |
| "current_ytm": 4.72, | |
| "display_name": "Export Import Bank Of India Sr-Q-10 9.4 Bd 14Ag23 Fvrs10Lac L.T.D 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08CT5", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1691971200, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 7m 23d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1056677, | |
| "current_ytm": 4.71, | |
| "display_name": "Bajaj Finance Limited 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QH4", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1672185600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 6d" | |
| }, | |
| { | |
| "coupon": 7.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1046858, | |
| "current_ytm": 4.71, | |
| "display_name": "National Highways Authority Of India 7.11%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07FX6", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1667606400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1825, | |
| "ttm": "1y 10m 14d" | |
| }, | |
| { | |
| "coupon": 6.72, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1045107, | |
| "current_ytm": 4.7, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 20 I 6.72 Loa 14Ap23 Fvrs10Lac L.T.D 6.72%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BW6", | |
| "issue_size": null, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1681430400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1191, | |
| "ttm": "2y 3m 23d" | |
| }, | |
| { | |
| "coupon": 8.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1067285, | |
| "current_ytm": 4.7, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.34%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08665", | |
| "issue_size": null, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1657497600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1277, | |
| "ttm": "1y 6m 19d" | |
| }, | |
| { | |
| "coupon": 9.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1056981, | |
| "current_ytm": 4.7, | |
| "display_name": "Lic Housing Finance Limited 9.43%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07CA1", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1644451200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "1y 1m 19d" | |
| }, | |
| { | |
| "coupon": 7.405, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1036844, | |
| "current_ytm": 4.7, | |
| "display_name": "Nabha Power Limited 7.405%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE445L08383", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1650412800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 883, | |
| "ttm": "1y 3m 29d" | |
| }, | |
| { | |
| "coupon": 8.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1054093, | |
| "current_ytm": 4.7, | |
| "display_name": "Kotak Mahindra Bank Limited 8.72%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE237A08924", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1642118400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 23d" | |
| }, | |
| { | |
| "coupon": 7.53, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1218.04, | |
| "current_ytm": 4.7, | |
| "display_name": "Ntpc Ltd 7.53%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JV4", | |
| "issue_size": 482959000, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1917388800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 9m 13d" | |
| }, | |
| { | |
| "coupon": 7.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1056257, | |
| "current_ytm": 4.69, | |
| "display_name": "Lic Housing Finance Limited 7.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OQ2", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1675987200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "2y 1m 19d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1092000, | |
| "current_ytm": 4.69, | |
| "display_name": "Rural Electrification Corporation Limited 8.01%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HM5", | |
| "issue_size": null, | |
| "last_traded_on": 1597363200, | |
| "maturity_date": 1693267200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 8m 7d" | |
| }, | |
| { | |
| "coupon": 8.79, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1265.77, | |
| "current_ytm": 4.69, | |
| "display_name": "Power Finance Corporation Ltd 8.79%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07448", | |
| "issue_size": 3533164000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1857945600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 25d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1115300, | |
| "current_ytm": 4.68, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.04%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07868", | |
| "issue_size": 10500000000, | |
| "last_traded_on": 1593129600, | |
| "maturity_date": 1772496000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 9d" | |
| }, | |
| { | |
| "coupon": 8.545, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1057129, | |
| "current_ytm": 4.68, | |
| "display_name": "Hdb Financial Services Limited 8.545%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CP3", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1655424000, | |
| "rated_as_on": 1578441600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1141, | |
| "ttm": "1y 5m 26d" | |
| }, | |
| { | |
| "coupon": 7.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1045505, | |
| "current_ytm": 4.68, | |
| "display_name": "Lic Housing Finance Limited 7.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07LQ8", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1651536000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 4m 11d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1060527, | |
| "current_ytm": 4.68, | |
| "display_name": "Lic Housing Finance Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OD0", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1655683200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 5m 29d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1274.95, | |
| "current_ytm": 4.67, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.73%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AD8", | |
| "issue_size": 284744000, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1869004800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1052900, | |
| "current_ytm": 4.67, | |
| "display_name": "Lic Housing Finance Limited 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OG3", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1663891200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1158, | |
| "ttm": "1y 9m 1d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1044613, | |
| "current_ytm": 4.66, | |
| "display_name": "Rec Limited 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BR5", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1639958400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 959, | |
| "ttm": " 11m 28d" | |
| }, | |
| { | |
| "coupon": 7.78, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1045519, | |
| "current_ytm": 4.66, | |
| "display_name": "Lic Housing Finance Limited 7.78%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07LW6", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1653264000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 5m 1d" | |
| }, | |
| { | |
| "coupon": 10.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1153587, | |
| "current_ytm": 4.65, | |
| "display_name": "Indian Railway Finance Corporation Limited 10.7%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09FP0", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1694390400, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "2y 8m 20d" | |
| }, | |
| { | |
| "coupon": 8.23, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1056673, | |
| "current_ytm": 4.65, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.23%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08657", | |
| "issue_size": null, | |
| "last_traded_on": 1596672000, | |
| "maturity_date": 1649980800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1204, | |
| "ttm": "1y 3m 24d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1049890, | |
| "current_ytm": 4.65, | |
| "display_name": "Power Finance Corporation Ltd 7.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KG2", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1665792000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 9m 23d" | |
| }, | |
| { | |
| "coupon": 8.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1087000, | |
| "current_ytm": 4.64, | |
| "display_name": "Nuclear Power Corporation Of India Limited 8.56%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE206D08154", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1678838400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 21d" | |
| }, | |
| { | |
| "coupon": 6.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1099.7, | |
| "current_ytm": 4.64, | |
| "display_name": "Rural Electrification Corporation Ltd 6.89%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JP4", | |
| "issue_size": 512464000, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1762300800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 10m 14d" | |
| }, | |
| { | |
| "coupon": 7.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1301.107, | |
| "current_ytm": 4.63, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 7.43%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07203", | |
| "issue_size": 364442000, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 2084486400, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "15y 30d" | |
| }, | |
| { | |
| "coupon": 9.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1081929, | |
| "current_ytm": 4.63, | |
| "display_name": "Lic Housing Finance Limited 9.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07DD3", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1668211200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 10m 21d" | |
| }, | |
| { | |
| "coupon": 7.532, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1011116, | |
| "current_ytm": 4.62, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 7.532%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07RV3", | |
| "issue_size": null, | |
| "last_traded_on": 1599436800, | |
| "maturity_date": 1611878400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1185, | |
| "ttm": " 1m 7d" | |
| }, | |
| { | |
| "coupon": 7.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1116.21, | |
| "current_ytm": 4.62, | |
| "display_name": "Power Finance Corporation Ltd 7.36%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07547", | |
| "issue_size": 793489000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1760659200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 25d" | |
| }, | |
| { | |
| "coupon": 7.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1245.8, | |
| "current_ytm": 4.62, | |
| "display_name": "National Highways Authority Of India 7.69%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EP5", | |
| "issue_size": 11276660000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1930780800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 2m 15d" | |
| }, | |
| { | |
| "coupon": 7.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1049942, | |
| "current_ytm": 4.62, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07SD3", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1672358400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "2y 8d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1069674, | |
| "current_ytm": 4.61, | |
| "display_name": "Nhpc Limited 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07989", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1686009600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2191, | |
| "ttm": "2y 5m 15d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1315.85, | |
| "current_ytm": 4.61, | |
| "display_name": "Power Finance Corporation Ltd 7.6%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07588", | |
| "issue_size": 1554758000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2076192000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 9m 25d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1255, | |
| "current_ytm": 4.6, | |
| "display_name": "Ntpc Ltd 8.48%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JF7", | |
| "issue_size": 2499459000, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1860537600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 11m 24d" | |
| }, | |
| { | |
| "coupon": 7.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1122.7, | |
| "current_ytm": 4.6, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 7.28%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07187", | |
| "issue_size": 1088906000, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1768953600, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 30d" | |
| }, | |
| { | |
| "coupon": 8.66, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1052169, | |
| "current_ytm": 4.6, | |
| "display_name": "Power Finance Corporation Ltd 8.66%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GR7", | |
| "issue_size": null, | |
| "last_traded_on": 1595203200, | |
| "maturity_date": 1637971200, | |
| "rated_as_on": 1571184000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2556, | |
| "ttm": " 11m 5d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 107363.1, | |
| "current_ytm": 4.6, | |
| "display_name": "Nhpc Limited 8.5%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07823", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1657756800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 6m 22d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1041655, | |
| "current_ytm": 4.6, | |
| "display_name": "Kotak Mahindra Prime Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7PZ9", | |
| "issue_size": null, | |
| "last_traded_on": 1599609600, | |
| "maturity_date": 1632787200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1139, | |
| "ttm": " 9m 6d" | |
| }, | |
| { | |
| "coupon": 7.03, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1041454, | |
| "current_ytm": 4.6, | |
| "display_name": "Rural Electrification Corporation Limited 7.03%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AK2", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1662508800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 8m 16d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1074588, | |
| "current_ytm": 4.59, | |
| "display_name": "Reliance Jio Infocomm Limited 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L07096", | |
| "issue_size": null, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1681603200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "2y 3m 25d" | |
| }, | |
| { | |
| "coupon": 7.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1285.392, | |
| "current_ytm": 4.59, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.25%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07819", | |
| "issue_size": 2944158000, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 2081808000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 11m 29d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1225.7, | |
| "current_ytm": 4.58, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.39%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AR8", | |
| "issue_size": 10249355000, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1931299200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 2m 21d" | |
| }, | |
| { | |
| "coupon": 7.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1303.2, | |
| "current_ytm": 4.58, | |
| "display_name": "Rec Ltd 7.43%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JU4", | |
| "issue_size": 1860559000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 2077833600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 10m 14d" | |
| }, | |
| { | |
| "coupon": 8.71, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1412.4, | |
| "current_ytm": 4.57, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.71%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AE6", | |
| "issue_size": 87595000, | |
| "last_traded_on": 1598918400, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.56, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1262206, | |
| "current_ytm": 4.57, | |
| "display_name": "Housing And Urban Development Corp. Ltd 8.56%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07899", | |
| "issue_size": null, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1851465600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 11d" | |
| }, | |
| { | |
| "coupon": 7.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1053894, | |
| "current_ytm": 4.57, | |
| "display_name": "National Bank For Agriculture And Rural Development Series 20 D 7.70 Loa 13Ju22 Fvrs10Lac L.T.D 7.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BL9", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1655078400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1097, | |
| "ttm": "1y 5m 22d" | |
| }, | |
| { | |
| "coupon": 7.69, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1250.26, | |
| "current_ytm": 4.57, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.69%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AT4", | |
| "issue_size": 6100458000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1931299200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 2m 21d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1378.2, | |
| "current_ytm": 4.57, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.5%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07305", | |
| "issue_size": 1868982000, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 2015366400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1268700, | |
| "current_ytm": 4.57, | |
| "display_name": "Indian Railway Finance Corporation Ltd 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07645", | |
| "issue_size": 550000000, | |
| "last_traded_on": 1593129600, | |
| "maturity_date": 1858896000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 11m 5d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1372.4, | |
| "current_ytm": 4.56, | |
| "display_name": "Rural Electrification Corporation Ltd 8.37%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HQ6", | |
| "issue_size": 136550000, | |
| "last_traded_on": 1594339200, | |
| "maturity_date": 2011132800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 9m 2d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1154.3, | |
| "current_ytm": 4.56, | |
| "display_name": "Power Finance Corporation Ltd 7.04%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07364", | |
| "issue_size": 692086000, | |
| "last_traded_on": 1601856000, | |
| "maturity_date": 1837814400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 125.61, | |
| "current_ytm": 4.56, | |
| "display_name": "National Housing Bank 8.46%", | |
| "face_value": 100, | |
| "frequency": "Annually", | |
| "isin": "INE557F07074", | |
| "issue_size": null, | |
| "last_traded_on": 1599782400, | |
| "maturity_date": 1851206400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 8d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1251.13, | |
| "current_ytm": 4.55, | |
| "display_name": "Rural Electrification Corporation Ltd 8.46%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HP8", | |
| "issue_size": 16387809000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1853366400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 9m 2d" | |
| }, | |
| { | |
| "coupon": 6.79, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1048764, | |
| "current_ytm": 4.55, | |
| "display_name": "Housing And Urban Development Corporation Limited 6.79%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08764", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1681430400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1183, | |
| "ttm": "2y 3m 23d" | |
| }, | |
| { | |
| "coupon": 8.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1300, | |
| "current_ytm": 4.55, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.98%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AG1", | |
| "issue_size": 1284225000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1869004800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.5383, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1057470, | |
| "current_ytm": 4.55, | |
| "display_name": "Bajaj Finance Limited 8.5383%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07QU7", | |
| "issue_size": null, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1654560000, | |
| "rated_as_on": 1571184000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1167, | |
| "ttm": "1y 5m 16d" | |
| }, | |
| { | |
| "coupon": 7.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1043239, | |
| "current_ytm": 4.55, | |
| "display_name": "Rural Electrification Corporation Limited 7.09%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AM8", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1665964800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 9m 25d" | |
| }, | |
| { | |
| "coupon": 7.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1047000, | |
| "current_ytm": 4.55, | |
| "display_name": "Rec Limited 7.09%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CD3", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1670889600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1126, | |
| "ttm": "1y 11m 21d" | |
| }, | |
| { | |
| "coupon": 7.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1122, | |
| "current_ytm": 4.54, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.32%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07827", | |
| "issue_size": 3689486000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1766275200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 11m 29d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1236, | |
| "current_ytm": 4.54, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 7.49%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07195", | |
| "issue_size": 8842652000, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1926720000, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 30d" | |
| }, | |
| { | |
| "coupon": 6.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1029092, | |
| "current_ytm": 4.54, | |
| "display_name": "Ultratech Cement Limited 6.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G08032", | |
| "issue_size": null, | |
| "last_traded_on": 1597363200, | |
| "maturity_date": 1637798400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 3d" | |
| }, | |
| { | |
| "coupon": 7.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1111097, | |
| "current_ytm": 4.54, | |
| "display_name": "Indian Renewable Energy Development Agency Limited 7.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07179", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1759276800, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 9d" | |
| }, | |
| { | |
| "coupon": 7.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1249.99, | |
| "current_ytm": 4.54, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.64%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07900", | |
| "issue_size": 11943130000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1931904000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 3m" | |
| }, | |
| { | |
| "coupon": 8.86, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1425, | |
| "current_ytm": 4.53, | |
| "display_name": "Rural Electrification Corporation Ltd 8.86%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IH3", | |
| "issue_size": 850304000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1253.634, | |
| "current_ytm": 4.53, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.38%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07289", | |
| "issue_size": 3035330000, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1857600000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1390, | |
| "current_ytm": 4.53, | |
| "display_name": "Rural Electrification Corporation Ltd 8.62%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HT0", | |
| "issue_size": 416304000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 2011132800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 9m 2d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1031.52, | |
| "current_ytm": 4.53, | |
| "display_name": "Tata Capital Financial Services Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07KD6", | |
| "issue_size": 14177673000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1632700800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 9m 5d" | |
| }, | |
| { | |
| "coupon": 6.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1045477, | |
| "current_ytm": 4.53, | |
| "display_name": "Small Industries Development Bank Of India Series Vi Of 2019-20 6.80 Bd 29Sp22 Fvrs10Lac L.T.D 6.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JO9", | |
| "issue_size": null, | |
| "last_traded_on": 1596585600, | |
| "maturity_date": 1664409600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.61, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1402.8, | |
| "current_ytm": 4.52, | |
| "display_name": "Rural Electrification Corporation Ltd 8.61%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IE0", | |
| "issue_size": 246264000, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1060326, | |
| "current_ytm": 4.52, | |
| "display_name": "Power Grid Corporation Of India Limited 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KT6", | |
| "issue_size": null, | |
| "last_traded_on": 1593475200, | |
| "maturity_date": 1653004800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": "1y 4m 28d" | |
| }, | |
| { | |
| "coupon": 7.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1049942, | |
| "current_ytm": 4.52, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RW5", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1658102400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 6m 26d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1099659, | |
| "current_ytm": 4.52, | |
| "display_name": "Power Grid Corporation Of India Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LB2", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1689379200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 6m 23d" | |
| }, | |
| { | |
| "coupon": 9.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1040852, | |
| "current_ytm": 4.52, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07HA2", | |
| "issue_size": null, | |
| "last_traded_on": 1600041600, | |
| "maturity_date": 1626739200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 6m 28d" | |
| }, | |
| { | |
| "coupon": 7.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1052182, | |
| "current_ytm": 4.51, | |
| "display_name": "Lic Housing Finance Limited 7.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MO1", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1665964800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 9m 25d" | |
| }, | |
| { | |
| "coupon": 7.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1220.3, | |
| "current_ytm": 4.51, | |
| "display_name": "Ntpc Ltd 7.28%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JS0", | |
| "issue_size": 1290476000, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1917388800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 9m 13d" | |
| }, | |
| { | |
| "coupon": 9.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1082388, | |
| "current_ytm": 4.51, | |
| "display_name": "Export Import Bank Of India Sr-P-15 9.14 Bd 01Ag22 Fvrs10Lac L.T.D 9.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08BJ8", | |
| "issue_size": null, | |
| "last_traded_on": 1599436800, | |
| "maturity_date": 1659312000, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 7m 10d" | |
| }, | |
| { | |
| "coupon": 8.54, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1264.178, | |
| "current_ytm": 4.5, | |
| "display_name": "Power Finance Corporation Ltd 8.54%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07430", | |
| "issue_size": 9326984000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1857945600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 25d" | |
| }, | |
| { | |
| "coupon": 8.16, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 119276.3, | |
| "current_ytm": 4.5, | |
| "display_name": "Power Finance Corporation Ltd 8.16%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07141", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1795564800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 11m 3d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1020900, | |
| "current_ytm": 4.5, | |
| "display_name": "Nabha Power Limited 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE445L08334", | |
| "issue_size": null, | |
| "last_traded_on": 1600732800, | |
| "maturity_date": 1619568000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1132, | |
| "ttm": " 4m 6d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1171300, | |
| "current_ytm": 4.5, | |
| "display_name": "India Infrastructure Finance Company Limited 7.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07081", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1826236800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 10m 24d" | |
| }, | |
| { | |
| "coupon": 8.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1426.5, | |
| "current_ytm": 4.49, | |
| "display_name": "Power Finance Corporation Ltd 8.92%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07463", | |
| "issue_size": 8619608000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2015712000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 25d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1047992, | |
| "current_ytm": 4.49, | |
| "display_name": "Lic Housing Finance Limited 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MJ1", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1661817600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 8m 8d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1079033, | |
| "current_ytm": 4.48, | |
| "display_name": "National Bank For Agriculture And Rural Development Series 19F 8.50 Ncd 31Ja23 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AT4", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1675123200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1519, | |
| "ttm": "2y 1m 9d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1262629, | |
| "current_ytm": 4.48, | |
| "display_name": "National Highways Authority Of India 8.48 Bd 22Nv28 Fvrs10Lac L.T.D 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07DB7", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1858464000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 11m" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1262345, | |
| "current_ytm": 4.48, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07214", | |
| "issue_size": 11597000000, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1851206400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 8d" | |
| }, | |
| { | |
| "coupon": 7.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1040441, | |
| "current_ytm": 4.48, | |
| "display_name": "Power Finance Corporation Ltd 7.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JD1", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1659916800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 7m 17d" | |
| }, | |
| { | |
| "coupon": 8.26, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1241900, | |
| "current_ytm": 4.48, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.26%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07198", | |
| "issue_size": 6303000000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1850601600, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 1d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1257240, | |
| "current_ytm": 4.48, | |
| "display_name": "Power Finance Corporation Ltd 8.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07380", | |
| "issue_size": null, | |
| "last_traded_on": 1604880000, | |
| "maturity_date": 1851206400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 8d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1160, | |
| "current_ytm": 4.47, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.04%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07595", | |
| "issue_size": 2638838000, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1837382400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 1d" | |
| }, | |
| { | |
| "coupon": 7.61, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1052785, | |
| "current_ytm": 4.46, | |
| "display_name": "Housing And Urban Development Corporation Limited 7.61%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08715", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1655856000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1111, | |
| "ttm": "1y 6m" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.129669, | |
| "current_price": 1034167, | |
| "current_ytm": 4.46, | |
| "display_name": "Bharat Petroleum Corporation Ltd 7.35%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE029A07075", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1646870400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 2m 16d" | |
| }, | |
| { | |
| "coupon": 7.77, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 117377.7, | |
| "current_ytm": 4.45, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.77%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HU6", | |
| "issue_size": 1915100000, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1794096000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 10m 17d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1037062, | |
| "current_ytm": 4.45, | |
| "display_name": "Rural Electrification Corporation Limited 8.44%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08872", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1638576000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 11m 12d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1261572, | |
| "current_ytm": 4.45, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07255", | |
| "issue_size": 11297000000, | |
| "last_traded_on": 1604880000, | |
| "maturity_date": 1851724800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 14d" | |
| }, | |
| { | |
| "coupon": 7.53, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1245, | |
| "current_ytm": 4.44, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.53%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07835", | |
| "issue_size": 10742172000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1924041600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 11m 29d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1090450, | |
| "current_ytm": 4.44, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JC4", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1678147200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 2m 13d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1288.2, | |
| "current_ytm": 4.44, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.58%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07972", | |
| "issue_size": 1273843000, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1862956800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 22d" | |
| }, | |
| { | |
| "coupon": 9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.486275, | |
| "current_price": 1060, | |
| "current_ytm": 4.44, | |
| "display_name": "L&T Finance Ltd 9.0%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE027E07881", | |
| "issue_size": 1769400000, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1649808000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": "1y 3m 22d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1235.401, | |
| "current_ytm": 4.44, | |
| "display_name": "National Bank For Agriculture & Rural Development 7.35%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE261F07057", | |
| "issue_size": 13527648000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1931990400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 3m 1d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1243260, | |
| "current_ytm": 4.4288, | |
| "display_name": "National Highways Authority Of India Sr Iiib 7.39 Bd 18Fb31 Fvrs10Lac L.T.D 7.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EL4", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1929139200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 1m 27d" | |
| }, | |
| { | |
| "coupon": 8.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1411.109, | |
| "current_ytm": 4.42, | |
| "display_name": "Nhpc Ltd 8.67%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07534", | |
| "issue_size": 3360700000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2014502400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 11d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1240, | |
| "current_ytm": 4.42, | |
| "display_name": "National Highways Authority Of India 7.39%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EO8", | |
| "issue_size": 18821193000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1930780800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 2m 15d" | |
| }, | |
| { | |
| "coupon": 8.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1052022, | |
| "current_ytm": 4.42, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RU9", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1655683200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5m 29d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.2, | |
| "current_price": 1026560, | |
| "current_ytm": 4.41, | |
| "display_name": "Nabha Power Limited 8.12%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE445L08342", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1624406400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": " 6m 1d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1051639, | |
| "current_ytm": 4.41, | |
| "display_name": "Rural Electrification Corporation Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BT1", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1654819200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5m 19d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1032346, | |
| "current_ytm": 4.41, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.2%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09GK9", | |
| "issue_size": null, | |
| "last_traded_on": 1591747200, | |
| "maturity_date": 1619481600, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": " 4m 5d" | |
| }, | |
| { | |
| "coupon": 7.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1115000, | |
| "current_ytm": 4.41, | |
| "display_name": "Ntpc Ltd 7.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JQ4", | |
| "issue_size": 3000000000, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1755734400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 30d" | |
| }, | |
| { | |
| "coupon": 8.91, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1438, | |
| "current_ytm": 4.41, | |
| "display_name": "Ntpc Ltd 8.91%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JJ9", | |
| "issue_size": 3999681000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2018304000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 11m 24d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1261600, | |
| "current_ytm": 4.41, | |
| "display_name": "Rural Electrification Corporation Ltd 8.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HN3", | |
| "issue_size": 11410000000, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1851120000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 8m 7d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1177.05, | |
| "current_ytm": 4.41, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.34%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07579", | |
| "issue_size": 25587103000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1834531200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "7y 1m 28d" | |
| }, | |
| { | |
| "coupon": 8.4295, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1035720, | |
| "current_ytm": 4.4, | |
| "display_name": "Kotak Mahindra Prime Limited 8.4295%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE916DA7QB8", | |
| "issue_size": null, | |
| "last_traded_on": 1595462400, | |
| "maturity_date": 1624838400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 822, | |
| "ttm": " 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10297000, | |
| "current_ytm": 4.4, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.2%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07PJ6", | |
| "issue_size": null, | |
| "last_traded_on": 1601856000, | |
| "maturity_date": 1627516800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 7m 7d" | |
| }, | |
| { | |
| "coupon": 8.51, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1268, | |
| "current_ytm": 4.4, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.51%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07915", | |
| "issue_size": 7992673000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1856044800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 3d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1335, | |
| "current_ytm": 4.4, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.5%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07843", | |
| "issue_size": 3696342000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2081808000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 11m 29d" | |
| }, | |
| { | |
| "coupon": 6.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1036838, | |
| "current_ytm": 4.4, | |
| "display_name": "Rec Limited 6.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08CE1", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1656547200, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 947, | |
| "ttm": "1y 6m 8d" | |
| }, | |
| { | |
| "coupon": 6.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1284.5, | |
| "current_ytm": -4.4, | |
| "display_name": "Indian Railway Finance Corporation Ltd 6.88%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07587", | |
| "issue_size": 1651700000, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1679529600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.81, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1059600, | |
| "current_ytm": 4.39, | |
| "display_name": "Small Industries Development Bank Of India Series V 8.81 Bd 25Jn22 Fvrs10Lac L.T.D 8.81%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JI1", | |
| "issue_size": null, | |
| "last_traded_on": 1598313600, | |
| "maturity_date": 1643068800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": "1y 1m 3d" | |
| }, | |
| { | |
| "coupon": 7.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1045000, | |
| "current_ytm": 4.39, | |
| "display_name": "National Highways Authority Of India 7.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07FT4", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1654473600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 5m 15d" | |
| }, | |
| { | |
| "coupon": 8.63, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1280, | |
| "current_ytm": 4.39, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.63%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07297", | |
| "issue_size": 1660320000, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1857600000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 21d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1030824, | |
| "current_ytm": 4.38, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07QG6", | |
| "issue_size": null, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1638230400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 8d" | |
| }, | |
| { | |
| "coupon": 8.71, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1280, | |
| "current_ytm": 4.38, | |
| "display_name": "Rural Electrification Corporation Ltd 8.71%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HS2", | |
| "issue_size": 11714802000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1853366400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 9m 2d" | |
| }, | |
| { | |
| "coupon": 7.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1134, | |
| "current_ytm": 4.38, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.29%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07892", | |
| "issue_size": 1907138000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1774137600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m" | |
| }, | |
| { | |
| "coupon": 8.62, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1091852, | |
| "current_ytm": 4.37, | |
| "display_name": "Food Corporation Of India 8.62 Loa 22Mr23 Fvrs10Lac L.T.D 8.62%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE861G08019", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1679443200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m" | |
| }, | |
| { | |
| "coupon": 7.43, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10458630, | |
| "current_ytm": 4.37, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.43%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07QT3", | |
| "issue_size": null, | |
| "last_traded_on": 1605657600, | |
| "maturity_date": 1655683200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 5m 29d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1023800, | |
| "current_ytm": 4.36, | |
| "display_name": "Lic Housing Finance Limited 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JK5", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1620604800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 18d" | |
| }, | |
| { | |
| "coupon": 7.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1349.91, | |
| "current_ytm": 4.36, | |
| "display_name": "Ntpc Ltd 7.62%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JW2", | |
| "issue_size": 1657398000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2075155200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "14y 9m 13d" | |
| }, | |
| { | |
| "coupon": 7.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1179, | |
| "current_ytm": 4.36, | |
| "display_name": "Rural Electrification Corporation Ltd 7.38%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GX4", | |
| "issue_size": 8520377000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1829174400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 11m 27d" | |
| }, | |
| { | |
| "coupon": 7.16, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1118100, | |
| "current_ytm": 4.36, | |
| "display_name": "Power Finance Corporation Ltd 7.16%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07521", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1752710400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 6m 25d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1107.2, | |
| "current_ytm": 4.36, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.01%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07263", | |
| "issue_size": 1726340000, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 1699747200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10m 21d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1065, | |
| "current_ytm": 4.35, | |
| "display_name": "Tata Capital Financial Services Ltd 8.45%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE306N07LI3", | |
| "issue_size": 7522582000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1661472000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 8m 4d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1140, | |
| "current_ytm": 4.35, | |
| "display_name": "Power Finance Corporation Ltd 8.18%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07414", | |
| "issue_size": 3250762000, | |
| "last_traded_on": 1571875200, | |
| "maturity_date": 1700092800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10m 25d" | |
| }, | |
| { | |
| "coupon": 8.84, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1355537.5, | |
| "current_ytm": 4.34, | |
| "display_name": "Power Grid Corporation Of India Limited 8.84%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HW6", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1666310400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4383, | |
| "ttm": "1y 9m 29d" | |
| }, | |
| { | |
| "coupon": 9.57, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1031065, | |
| "current_ytm": 4.34, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.57%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HR2", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1622419200, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 9d" | |
| }, | |
| { | |
| "coupon": 8.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1309.8, | |
| "current_ytm": 4.34, | |
| "display_name": "Rural Electrification Corporation Ltd 8.88%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IG5", | |
| "issue_size": 2925451000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1869004800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.16, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 120140, | |
| "current_ytm": 4.34, | |
| "display_name": "Housing And Urban Development Corp. Ltd 8.16%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE031A09FG6", | |
| "issue_size": null, | |
| "last_traded_on": 1604016000, | |
| "maturity_date": 1797033600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 11m 20d" | |
| }, | |
| { | |
| "coupon": 7.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1039950, | |
| "current_ytm": 4.33, | |
| "display_name": "Rural Electrification Corporation Limited 7.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AF2", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1646006400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 2m 6d" | |
| }, | |
| { | |
| "coupon": 7.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1032372, | |
| "current_ytm": 4.33, | |
| "display_name": "Ultratech Cement Limited 7.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G07208", | |
| "issue_size": null, | |
| "last_traded_on": 1596585600, | |
| "maturity_date": 1634515200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 9m 26d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1245.5, | |
| "current_ytm": 4.33, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.35%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07884", | |
| "issue_size": 10163760000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1931904000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 3m" | |
| }, | |
| { | |
| "coupon": 7.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1052778, | |
| "current_ytm": 4.31, | |
| "display_name": "Reliance Industries Limited 7.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08500", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1667865600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 10m 17d" | |
| }, | |
| { | |
| "coupon": 7.05, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1047005, | |
| "current_ytm": 4.3, | |
| "display_name": "Housing And Urban Development Corporation Limited 7.05%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08749", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1665619200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1157, | |
| "ttm": "1y 9m 21d" | |
| }, | |
| { | |
| "coupon": 9.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1045351, | |
| "current_ytm": 4.3, | |
| "display_name": "Power Finance Corporation Ltd 9.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GA3", | |
| "issue_size": null, | |
| "last_traded_on": 1595203200, | |
| "maturity_date": 1625616000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 6m 15d" | |
| }, | |
| { | |
| "coupon": 7.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1118574, | |
| "current_ytm": 4.3, | |
| "display_name": "Rec Ltd 7.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JO7", | |
| "issue_size": 3000000000, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1753228800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 1d" | |
| }, | |
| { | |
| "coupon": 8.8217, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1034600, | |
| "current_ytm": 4.3, | |
| "display_name": "Hdb Financial Services Limited 8.8217%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CC1", | |
| "issue_size": null, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1631145600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1105, | |
| "ttm": " 8m 18d" | |
| }, | |
| { | |
| "coupon": 9.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1029108, | |
| "current_ytm": 4.27, | |
| "display_name": "Lic Housing Finance Limited 9.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07AL2", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1615075200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 2m 13d" | |
| }, | |
| { | |
| "coupon": 7.28, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1237000, | |
| "current_ytm": 4.27, | |
| "display_name": "National Highways Authority Of India 7.28%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EF6", | |
| "issue_size": 33230000000, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1915920000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 8m 27d" | |
| }, | |
| { | |
| "coupon": 7.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1171, | |
| "current_ytm": 4.27, | |
| "display_name": "India Infrastructure Finance Company Ltd 7.02%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07172", | |
| "issue_size": 465618000, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1837641600, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 4d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1248092, | |
| "current_ytm": 4.27, | |
| "display_name": "Kotak Mahindra Prime Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE916DA7PR6", | |
| "issue_size": null, | |
| "last_traded_on": 1597881600, | |
| "maturity_date": 1625529600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1114, | |
| "ttm": " 6m 14d" | |
| }, | |
| { | |
| "coupon": 6.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1048977, | |
| "current_ytm": 4.27, | |
| "display_name": "Housing And Urban Development Corporation Limited 6.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08756", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1668124800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1157, | |
| "ttm": "1y 10m 20d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1066854, | |
| "current_ytm": 4.27, | |
| "display_name": "Power Finance Corporation Ltd 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JU5", | |
| "issue_size": null, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1660176000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1249, | |
| "ttm": "1y 7m 20d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 117670, | |
| "current_ytm": 4.26, | |
| "display_name": "Power Finance Corporation Ltd 7.75%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07125", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1792022400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 9m 23d" | |
| }, | |
| { | |
| "coupon": 8.76, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1295, | |
| "current_ytm": 4.26, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.76%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07949", | |
| "issue_size": 8150009000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1856044800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 3d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.188788, | |
| "current_price": 512366.5, | |
| "current_ytm": 4.25, | |
| "display_name": "Icici Home Finance Company Limited 8.25%", | |
| "face_value": 500000, | |
| "frequency": "Annually", | |
| "isin": "INE071G08965", | |
| "issue_size": null, | |
| "last_traded_on": 1595548800, | |
| "maturity_date": 1616371200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 710, | |
| "ttm": " 3m" | |
| }, | |
| { | |
| "coupon": 8.595, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1044340, | |
| "current_ytm": 4.24, | |
| "display_name": "Lic Housing Finance Limited 8.595%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1642118400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1037, | |
| "ttm": "1y 23d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1052620, | |
| "current_ytm": 4.24, | |
| "display_name": "Power Grid Corporation Of India Limited 8.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07LV0", | |
| "issue_size": null, | |
| "last_traded_on": 1597708800, | |
| "maturity_date": 1634688000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 9m 28d" | |
| }, | |
| { | |
| "coupon": 8.58, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1052135, | |
| "current_ytm": 4.24, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.58%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RS3", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1647561600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m 24d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1312067.5, | |
| "current_ytm": 4.23, | |
| "display_name": "Power Grid Corporation Of India Limited 8.85%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07KG3", | |
| "issue_size": null, | |
| "last_traded_on": 1599177600, | |
| "maturity_date": 1634601600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": " 9m 27d" | |
| }, | |
| { | |
| "coupon": 8.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1435.4, | |
| "current_ytm": 4.23, | |
| "display_name": "Power Finance Corporation Ltd 8.67%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07455", | |
| "issue_size": 10673804000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2015712000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 25d" | |
| }, | |
| { | |
| "coupon": 7.51, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 103767.4, | |
| "current_ytm": 4.22, | |
| "display_name": "Power Finance Corporation Ltd 7.51%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07117", | |
| "issue_size": null, | |
| "last_traded_on": 1596412800, | |
| "maturity_date": 1634256000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 9m 23d" | |
| }, | |
| { | |
| "coupon": 8.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1024900, | |
| "current_ytm": 4.22, | |
| "display_name": "Bajaj Finance Limited 8.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07KI5", | |
| "issue_size": null, | |
| "last_traded_on": 1598486400, | |
| "maturity_date": 1616457600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.16, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1122.4, | |
| "current_ytm": 4.22, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.16%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07388", | |
| "issue_size": 3858714000, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1711497600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 5d" | |
| }, | |
| { | |
| "coupon": 9.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1075494, | |
| "current_ytm": 4.22, | |
| "display_name": "Rural Electrification Corporation Limited 9.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08740", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1655251200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 5m 24d" | |
| }, | |
| { | |
| "coupon": 7.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1032205, | |
| "current_ytm": 4.22, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07934", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1636329600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 10m 17d" | |
| }, | |
| { | |
| "coupon": 8.68, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1050320, | |
| "current_ytm": 4.21, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.68%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09EK4", | |
| "issue_size": null, | |
| "last_traded_on": 1601424000, | |
| "maturity_date": 1638144000, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 11m 7d" | |
| }, | |
| { | |
| "coupon": 8.16, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1127.1, | |
| "current_ytm": 4.21, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 8.16%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07104", | |
| "issue_size": 757590000, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1710288000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 2m 20d" | |
| }, | |
| { | |
| "coupon": 7.11, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1124800, | |
| "current_ytm": 4.21, | |
| "display_name": "National Highways Authority Of India Sr Iia 7.11 Bd 18Sp25 Fvrs10Lac L.T.D 7.11%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EE9", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1758153600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 8m 27d" | |
| }, | |
| { | |
| "coupon": 7.34, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1250, | |
| "current_ytm": 4.2, | |
| "display_name": "Rural Electrification Corporation Ltd 7.34%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07JS8", | |
| "issue_size": 392625000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1920067200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 10m 14d" | |
| }, | |
| { | |
| "coupon": 8.76, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 7256, | |
| "current_ytm": 4.2, | |
| "display_name": "National Housing Bank 8.76%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07108", | |
| "issue_size": 7134260000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2020723200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 22d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1124800, | |
| "current_ytm": 4.2, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.19%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07777", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1753920000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 7m 9d" | |
| }, | |
| { | |
| "coupon": 7.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1046213, | |
| "current_ytm": 4.2, | |
| "display_name": "National Bank For Agriculture And Rural Development Ncd Sr 20F 7.18 Loa 08Ag22 Fvrs10Lac L.T.D 7.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BN5", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1659916800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 7m 17d" | |
| }, | |
| { | |
| "coupon": 6.7, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1045122, | |
| "current_ytm": 4.2, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 20H 6.70 Loa 11Nv22 Fvrs10Lac L.T.D 6.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BQ8", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1668124800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 10m 20d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1022948, | |
| "current_ytm": 4.19, | |
| "display_name": "Lic Housing Finance Limited 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JF5", | |
| "issue_size": null, | |
| "last_traded_on": 1597363200, | |
| "maturity_date": 1614297600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1796, | |
| "ttm": " 2m 4d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1072630, | |
| "current_ytm": 4.19, | |
| "display_name": "Export Import Bank Of India 9.3 Bd 11My22 Fvrs10Lac L.T.D 9.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08AX1", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1652227200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 4m 19d" | |
| }, | |
| { | |
| "coupon": 8.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1117.537, | |
| "current_ytm": 4.19, | |
| "display_name": "National Highways Authority Of India 8.27%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07DC5", | |
| "issue_size": 4752471000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1707091200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 1m 14d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1047400, | |
| "current_ytm": 4.18, | |
| "display_name": "Power Finance Corporation Ltd 8.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JW1", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1647648000, | |
| "rated_as_on": 1571184000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m 25d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1293.01, | |
| "current_ytm": 4.18, | |
| "display_name": "National Highways Authority Of India 8.5%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07DE1", | |
| "issue_size": 17320233000, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1864944000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m 14d" | |
| }, | |
| { | |
| "coupon": 7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1046410, | |
| "current_ytm": 4.18, | |
| "display_name": "Reliance Industries Limited 7.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08476", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1661904000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 8m 9d" | |
| }, | |
| { | |
| "coupon": 8.83, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1053253, | |
| "current_ytm": 4.18, | |
| "display_name": "Rural Electrification Corporation Limited 8.83%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BD5", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1642723200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1187, | |
| "ttm": "1y 30d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1463.85, | |
| "current_ytm": 4.18, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07438", | |
| "issue_size": 1412781000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2027030400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 5d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1054796, | |
| "current_ytm": 4.17, | |
| "display_name": "Rec Limited 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BM6", | |
| "issue_size": null, | |
| "last_traded_on": 1603238400, | |
| "maturity_date": 1647129600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m 19d" | |
| }, | |
| { | |
| "coupon": 7.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1064544, | |
| "current_ytm": 4.17, | |
| "display_name": "Rural Electrification Corporation Limited 7.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GU0", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1668988800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 10m 30d" | |
| }, | |
| { | |
| "coupon": 8.41, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1117.373, | |
| "current_ytm": 4.16, | |
| "display_name": "Ntpc Ltd 8.41%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JE0", | |
| "issue_size": 4880265000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1702684800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 11m 24d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1106.836, | |
| "current_ytm": 4.16, | |
| "display_name": "Nhpc Ltd 8.18%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07518", | |
| "issue_size": 508136000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1698883200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10m 11d" | |
| }, | |
| { | |
| "coupon": 9.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1049740, | |
| "current_ytm": 4.16, | |
| "display_name": "Kotak Mahindra Bank Limited 9.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE237A08908", | |
| "issue_size": null, | |
| "last_traded_on": 1597276800, | |
| "maturity_date": 1628726400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 7m 21d" | |
| }, | |
| { | |
| "coupon": 7.68, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1390.01, | |
| "current_ytm": 4.16, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 7.68%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07237", | |
| "issue_size": 749988000, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 2084486400, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "15y 30d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 7267, | |
| "current_ytm": 4.16, | |
| "display_name": "National Housing Bank 8.65%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07165", | |
| "issue_size": 735600000, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1017803, | |
| "current_ytm": 4.15, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07TC9", | |
| "issue_size": null, | |
| "last_traded_on": 1602720000, | |
| "maturity_date": 1616112000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 730, | |
| "ttm": " 2m 25d" | |
| }, | |
| { | |
| "coupon": 7.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1061952, | |
| "current_ytm": 4.15, | |
| "display_name": "Power Finance Corporation Ltd 7.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07299", | |
| "issue_size": null, | |
| "last_traded_on": 1600992000, | |
| "maturity_date": 1669075200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1024785, | |
| "current_ytm": 4.15, | |
| "display_name": "Lic Housing Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JB4", | |
| "issue_size": null, | |
| "last_traded_on": 1595548800, | |
| "maturity_date": 1613088000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1796, | |
| "ttm": " 1m 21d" | |
| }, | |
| { | |
| "coupon": 8.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1051826, | |
| "current_ytm": 4.15, | |
| "display_name": "Rural Electrification Corporation Limited 8.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08922", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1646784000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": "1y 2m 15d" | |
| }, | |
| { | |
| "coupon": 7.85, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1050256, | |
| "current_ytm": 4.15, | |
| "display_name": "National Bank For Agriculture And Rural Development Series 20 B 7.85 Loa 23My22 Fvrs10Lac L.T.D 7.85%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BJ3", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1653264000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5m 1d" | |
| }, | |
| { | |
| "coupon": 9.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1036426, | |
| "current_ytm": 4.15, | |
| "display_name": "Rural Electrification Corporation Limited 9.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IW2", | |
| "issue_size": null, | |
| "last_traded_on": 1603843200, | |
| "maturity_date": 1626480000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 6m 25d" | |
| }, | |
| { | |
| "coupon": 8.92, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1470, | |
| "current_ytm": 4.14, | |
| "display_name": "Nhpc Ltd 8.92%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07567", | |
| "issue_size": 2536237000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 2014502400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 10m 11d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1265, | |
| "current_ytm": 4.14, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.39%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AM9", | |
| "issue_size": 9096909000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1928275200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 1m 17d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1121800, | |
| "current_ytm": 4.14, | |
| "display_name": "National Highways Authority Of India 8.35 Bd 22Nv23 Fvrs10Lac L.T.D 8.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07DA9", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1700611200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 11m" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1048516, | |
| "current_ytm": 4.14, | |
| "display_name": "Export Import Bank Of India Sr-U-01 7.35 Bd 18My22 Fvrs10Lac L.T.D 7.35%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FM3", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1652832000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 4m 26d" | |
| }, | |
| { | |
| "coupon": 7.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1255, | |
| "current_ytm": 4.13, | |
| "display_name": "Power Finance Corporation Ltd 7.27%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07554", | |
| "issue_size": 1313302000, | |
| "last_traded_on": 1599523200, | |
| "maturity_date": 1918425600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 9m 25d" | |
| }, | |
| { | |
| "coupon": 8.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 5623.14, | |
| "current_ytm": 4.13, | |
| "display_name": "National Housing Bank 8.25%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07140", | |
| "issue_size": 979740000, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1711411200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3655, | |
| "ttm": "3y 3m 4d" | |
| }, | |
| { | |
| "coupon": 7.87, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.117725, | |
| "current_price": 1048214, | |
| "current_ytm": 4.13, | |
| "display_name": "Larsen And Toubro Limited 7.87%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018A08AR3", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1650240000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 3m 27d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1269.99, | |
| "current_ytm": 4.13, | |
| "display_name": "Power Finance Corporation Ltd 7.52%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07562", | |
| "issue_size": 451753000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1918425600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "9y 9m 25d" | |
| }, | |
| { | |
| "coupon": 8.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1121.6, | |
| "current_ytm": 4.12, | |
| "display_name": "Rural Electrification Corporation Ltd 8.19%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IC4", | |
| "issue_size": 2892542000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1711238400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.21, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1064700, | |
| "current_ytm": 4.12, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.21%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HV4", | |
| "issue_size": null, | |
| "last_traded_on": 1599004800, | |
| "maturity_date": 1669420800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 4d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1099.99, | |
| "current_ytm": 4.12, | |
| "display_name": "Rural Electrification Corporation Ltd 8.01%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HO1", | |
| "issue_size": 2455441000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1695513600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 9m 2d" | |
| }, | |
| { | |
| "coupon": 6.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.230537, | |
| "current_price": 1051580, | |
| "current_ytm": 4.12, | |
| "display_name": "Hindustan Petroleum Corporation Limited 6.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE094A08044", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1671062400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1157, | |
| "ttm": "1y 11m 23d" | |
| }, | |
| { | |
| "coupon": 6.98, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1048269, | |
| "current_ytm": 4.11, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr 20G 6.98 Loa 19Sp22 Fvrs10Lac L.T.D 6.98%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BO3", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1663545600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 8m 28d" | |
| }, | |
| { | |
| "coupon": 8.02, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.117725, | |
| "current_price": 1054079, | |
| "current_ytm": 4.11, | |
| "display_name": "Larsen And Toubro Limited 8.02%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE018A08AS1", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1653177600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 5m" | |
| }, | |
| { | |
| "coupon": 7.68, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1020837, | |
| "current_ytm": 4.1, | |
| "display_name": "Housing And Urban Development Corporation Limited 7.68%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08590", | |
| "issue_size": null, | |
| "last_traded_on": 1598227200, | |
| "maturity_date": 1617580800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1105, | |
| "ttm": " 3m 14d" | |
| }, | |
| { | |
| "coupon": 8.46, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1053600, | |
| "current_ytm": 4.1, | |
| "display_name": "Housing And Urban Development Corporation Limited 8.46%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE031A08632", | |
| "issue_size": null, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1644883200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1168, | |
| "ttm": "1y 1m 24d" | |
| }, | |
| { | |
| "coupon": 8.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1102800, | |
| "current_ytm": 4.1, | |
| "display_name": "India Infrastructure Finance Company Limited 8.01%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07230", | |
| "issue_size": null, | |
| "last_traded_on": 1603756800, | |
| "maturity_date": 1693353600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 8m 8d" | |
| }, | |
| { | |
| "coupon": 8.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1298.5, | |
| "current_ytm": 4.1, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.48%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07339", | |
| "issue_size": 2798922000, | |
| "last_traded_on": 1606780800, | |
| "maturity_date": 1863734400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m" | |
| }, | |
| { | |
| "coupon": 7.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1140, | |
| "current_ytm": 4.09, | |
| "display_name": "Ntpc Ltd 7.36%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JU6", | |
| "issue_size": 659643000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1759622400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "4y 9m 13d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1286.05, | |
| "current_ytm": 4.08, | |
| "display_name": "National Highways Authority Of India 7.6%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EJ8", | |
| "issue_size": 26752627000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1925856000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 20d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1025995, | |
| "current_ytm": 4.08, | |
| "display_name": "Power Finance Corporation Ltd 9.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07505", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1612051200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 1m 9d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1061.517, | |
| "current_ytm": 4.08, | |
| "display_name": "India Infrastructure Finance Company Ltd 7.19%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07131", | |
| "issue_size": 9664992000, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1674345600, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1059.5, | |
| "current_ytm": 4.07, | |
| "display_name": "Rural Electrification Corporation Ltd 7.22%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GW6", | |
| "issue_size": 11653094000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1671408000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "1y 11m 27d" | |
| }, | |
| { | |
| "coupon": 7.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1296, | |
| "current_ytm": 4.06, | |
| "display_name": "National Bank For Agriculture & Rural Development 7.64%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE261F07032", | |
| "issue_size": 17587364000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1931990400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "10y 3m 1d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1247191, | |
| "current_ytm": 4.06, | |
| "display_name": "Tata Capital Financial Services Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE306N07JU2", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1611273600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1106, | |
| "ttm": " 1m" | |
| }, | |
| { | |
| "coupon": 7.62, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 103570, | |
| "current_ytm": 4.06, | |
| "display_name": "Housing And Urban Development Corp. Ltd 7.62%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE031A09FC5", | |
| "issue_size": null, | |
| "last_traded_on": 1603670400, | |
| "maturity_date": 1636588800, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 20d" | |
| }, | |
| { | |
| "coupon": 7.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1051526, | |
| "current_ytm": 4.05, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 7.93%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KK5", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1651536000, | |
| "rated_as_on": 1571184000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 4m 11d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1057387, | |
| "current_ytm": 4.05, | |
| "display_name": "Rural Electrification Corporation Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE020B08BF0", | |
| "issue_size": null, | |
| "last_traded_on": 1605225600, | |
| "maturity_date": 1647907200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1216, | |
| "ttm": "1y 3m" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1268631, | |
| "current_ytm": 4.05, | |
| "display_name": "Hdb Financial Services Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE756I07CD9", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1635465600, | |
| "rated_as_on": 1578441600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1108, | |
| "ttm": " 10m 7d" | |
| }, | |
| { | |
| "coupon": 7.49, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1030598, | |
| "current_ytm": 4.05, | |
| "display_name": "Hdb Financial Services Limited 7.49%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CV1", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1637193600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 797, | |
| "ttm": " 10m 27d" | |
| }, | |
| { | |
| "coupon": 6.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1026461, | |
| "current_ytm": 4.05, | |
| "display_name": "Housing Development Finance Corporation Ltd 6.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07SC5", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1637798400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 11m 3d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1051099, | |
| "current_ytm": 4.05, | |
| "display_name": "Reliance Industries Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE002A08575", | |
| "issue_size": null, | |
| "last_traded_on": 1607040000, | |
| "maturity_date": 1646697600, | |
| "rated_as_on": 1556064000, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 2m 14d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1040300, | |
| "current_ytm": 4.04, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MZ9", | |
| "issue_size": null, | |
| "last_traded_on": 1601251200, | |
| "maturity_date": 1631577600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": " 8m 23d" | |
| }, | |
| { | |
| "coupon": 8.09, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 103940, | |
| "current_ytm": 4.04, | |
| "display_name": "Power Finance Corporation Ltd 8.09%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07133", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1637798400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3694, | |
| "ttm": " 11m 3d" | |
| }, | |
| { | |
| "coupon": 6.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1046489, | |
| "current_ytm": 4.04, | |
| "display_name": "Small Industries Development Bank Of India V 2019-20 6.99 Bd 08Ag22 Fvrs10Lac L.T.D 6.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JN1", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1659916800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 7m 17d" | |
| }, | |
| { | |
| "coupon": 7.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1050740, | |
| "current_ytm": 4.04, | |
| "display_name": "Small Industries Development Bank Of India Iv 2019-20 7.29 Bd 01Ag22 Fvrs10Lac L.T.D 7.29%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JM3", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1659312000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 7m 10d" | |
| }, | |
| { | |
| "coupon": 9.48, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1039193, | |
| "current_ytm": 4.04, | |
| "display_name": "Rural Electrification Corporation Limited 9.48%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08591", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1628553600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 7m 19d" | |
| }, | |
| { | |
| "coupon": 7.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1150, | |
| "current_ytm": 4.04, | |
| "display_name": "National Highways Authority Of India 7.29%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EN0", | |
| "issue_size": 1923340000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1773014400, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 15d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1227, | |
| "current_ytm": 4.04, | |
| "display_name": "Power Finance Corporation Ltd 8.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07208", | |
| "issue_size": 12311232000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1801440000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "6y 1m 10d" | |
| }, | |
| { | |
| "coupon": 7.03, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1029625, | |
| "current_ytm": 4.04, | |
| "display_name": "Lic Housing Finance Limited 7.03%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OO7", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1640649600, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 761, | |
| "ttm": "1y 6d" | |
| }, | |
| { | |
| "coupon": 7.59, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1030384, | |
| "current_ytm": 4.04, | |
| "display_name": "Lic Housing Finance Limited 7.59%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KQ0", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1634169600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 9m 22d" | |
| }, | |
| { | |
| "coupon": 7.22, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1028106, | |
| "current_ytm": 4.04, | |
| "display_name": "Lic Housing Finance Limited 7.22%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OP4", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1637280000, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 700, | |
| "ttm": " 10m 28d" | |
| }, | |
| { | |
| "coupon": 9.95, | |
| "credit_rating": "AAA", | |
| "current_pod": null, | |
| "current_price": 1071229, | |
| "current_ytm": 4.03, | |
| "display_name": "Food Corporation Of India Sr-Vi 9.95 Loa 07Mr22 Fvrs10Lac L.T.D 9.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE861G08035", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1646611200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 2922, | |
| "ttm": "1y 2m 13d" | |
| }, | |
| { | |
| "coupon": 8.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1113.25, | |
| "current_ytm": 4.03, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.14%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07907", | |
| "issue_size": 2695819000, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1698192000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10m 3d" | |
| }, | |
| { | |
| "coupon": 7.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1202, | |
| "current_ytm": 4.03, | |
| "display_name": "India Infrastructure Finance Company Ltd 7.36%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07149", | |
| "issue_size": 7609553000, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1832112000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "7y 1m" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1023200, | |
| "current_ytm": 4.03, | |
| "display_name": "Rural Electrification Corporation Limited 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AR7", | |
| "issue_size": null, | |
| "last_traded_on": 1597017600, | |
| "maturity_date": 1618617600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1186, | |
| "ttm": " 3m 26d" | |
| }, | |
| { | |
| "coupon": 7.66, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1031779, | |
| "current_ytm": 4.02, | |
| "display_name": "Lic Housing Finance Limited 7.66%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KR8", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1634774400, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 9m 29d" | |
| }, | |
| { | |
| "coupon": 7.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1065, | |
| "current_ytm": 4.02, | |
| "display_name": "Indian Railway Finance Corporation Ltd 7.18%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07561", | |
| "issue_size": 28146804000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1676764800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 1m 28d" | |
| }, | |
| { | |
| "coupon": 8.66, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1465, | |
| "current_ytm": 4.02, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.66%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07347", | |
| "issue_size": 7543989000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2021500800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 1m" | |
| }, | |
| { | |
| "coupon": 7.81, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1031360, | |
| "current_ytm": 4.01, | |
| "display_name": "Lic Housing Finance Limited 7.81%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KK3", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1634601600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1856, | |
| "ttm": " 9m 27d" | |
| }, | |
| { | |
| "coupon": 8.91, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1492, | |
| "current_ytm": 4.01, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.91%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07370", | |
| "issue_size": 5958997000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2021500800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 1m" | |
| }, | |
| { | |
| "coupon": 7.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1320, | |
| "current_ytm": 4.01, | |
| "display_name": "India Infrastructure Finance Company Ltd 7.4%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07156", | |
| "issue_size": 11564224000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1989964800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "12y 1m" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1415125, | |
| "current_ytm": -4.01, | |
| "display_name": "Power Grid Corporation Of India Limited 8.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07HJ3", | |
| "issue_size": null, | |
| "last_traded_on": 1594080000, | |
| "maturity_date": 1625702400, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 4018, | |
| "ttm": " 6m 16d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 1249500, | |
| "current_ytm": 4, | |
| "display_name": "Kotak Mahindra Prime Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE916DA7PH7", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1608681600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1090, | |
| "ttm": " 1d" | |
| }, | |
| { | |
| "coupon": 8.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1049457, | |
| "current_ytm": 4, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-19B 8.60 Bd 31Jn22 Fvrs10Lac L.T.D 8.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AI7", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1643587200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1347, | |
| "ttm": "1y 1m 9d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1024200, | |
| "current_ytm": 4, | |
| "display_name": "Power Finance Corporation Ltd 7.04%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08KJ6", | |
| "issue_size": null, | |
| "last_traded_on": 1596067200, | |
| "maturity_date": 1681430400, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 1193, | |
| "ttm": "2y 3m 23d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1025336, | |
| "current_ytm": 4, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KB4", | |
| "issue_size": null, | |
| "last_traded_on": 1601942400, | |
| "maturity_date": 1622073600, | |
| "rated_as_on": 1558310400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 5m 5d" | |
| }, | |
| { | |
| "coupon": 7.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1051490, | |
| "current_ytm": 3.99, | |
| "display_name": "Small Industries Development Bank Of India Sr Ii Of 2019-20 7.95 Ncd 26Ap22 Fvrs10Lac L.T.D 7.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JK7", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1650931200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 4m 4d" | |
| }, | |
| { | |
| "coupon": 8.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 7500, | |
| "current_ytm": 3.98, | |
| "display_name": "National Housing Bank 8.9%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07199", | |
| "issue_size": 483535000, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 2026771200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1032028, | |
| "current_ytm": 3.98, | |
| "display_name": "Power Finance Corporation Ltd 7.27%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IN2", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1640131200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1030439, | |
| "current_ytm": 3.98, | |
| "display_name": "Lic Housing Finance Limited 8.3%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JY6", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1626307200, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 6m 23d" | |
| }, | |
| { | |
| "coupon": 7.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1052324, | |
| "current_ytm": 3.98, | |
| "display_name": "National Bank For Agriculture And Rural Development Series 20 A 7.90 Bd 18Ap22 Fvrs10Lac L.T.D 7.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08BI5", | |
| "issue_size": null, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1650240000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": "1y 3m 27d" | |
| }, | |
| { | |
| "coupon": 8.26, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 5630.5, | |
| "current_ytm": 3.97, | |
| "display_name": "National Housing Bank 8.26%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07082", | |
| "issue_size": 1394125000, | |
| "last_traded_on": 1604534400, | |
| "maturity_date": 1705104000, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "3y 22d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 418173, | |
| "current_ytm": 39.63, | |
| "display_name": "Shree Maheshwar\n9.75 Loa 23Mr22 Fvrs10Lac L.T.D 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE875F07013", | |
| "issue_size": null, | |
| "last_traded_on": 1519171200, | |
| "maturity_date": 1647993600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "1y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1033750, | |
| "current_ytm": 3.96, | |
| "display_name": "Reliance Jio Infocomm Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L07120", | |
| "issue_size": null, | |
| "last_traded_on": 1603324800, | |
| "maturity_date": 1626566400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 6m 26d" | |
| }, | |
| { | |
| "coupon": 8.76, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1483.05, | |
| "current_ytm": 3.96, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.76%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07980", | |
| "issue_size": 2865430000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 2020723200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 22d" | |
| }, | |
| { | |
| "coupon": 8.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1022300, | |
| "current_ytm": 3.96, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07TF2", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1622160000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 729, | |
| "ttm": " 5m 6d" | |
| }, | |
| { | |
| "coupon": 6.99, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.076291, | |
| "current_price": 1030300, | |
| "current_ytm": 3.95, | |
| "display_name": "Ultratech Cement Limited 6.99%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE481G08024", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1637712000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 2d" | |
| }, | |
| { | |
| "coupon": 9.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 7550, | |
| "current_ytm": 3.94, | |
| "display_name": "National Housing Bank 9.01%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07132", | |
| "issue_size": 6657165000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2020723200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 22d" | |
| }, | |
| { | |
| "coupon": 7.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1278.9, | |
| "current_ytm": 3.94, | |
| "display_name": "National Highways Authority Of India 7.35%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EI0", | |
| "issue_size": 59825746000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1925856000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 20d" | |
| }, | |
| { | |
| "coupon": 7.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1207, | |
| "current_ytm": 3.94, | |
| "display_name": "Power Finance Corporation Ltd 7.36%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE134E07349", | |
| "issue_size": 3569978000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1830556800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "7y 13d" | |
| }, | |
| { | |
| "coupon": 7.67, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1025896, | |
| "current_ytm": 3.93, | |
| "display_name": "Lic Housing Finance Limited 7.67%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07LX4", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1627516800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1522, | |
| "ttm": " 7m 7d" | |
| }, | |
| { | |
| "coupon": 7.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1306, | |
| "current_ytm": 3.92, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.64%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AO5", | |
| "issue_size": 5561481000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1928275200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 1m 17d" | |
| }, | |
| { | |
| "coupon": 9.01, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1514.34, | |
| "current_ytm": 3.91, | |
| "display_name": "Housing & Urban Development Corporation Ltd 9.01%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AB2", | |
| "issue_size": 6711558000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2020723200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 22d" | |
| }, | |
| { | |
| "coupon": 9.36, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1038956, | |
| "current_ytm": 3.91, | |
| "display_name": "Power Finance Corporation Ltd 9.36%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DR4", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1627776000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 7m 10d" | |
| }, | |
| { | |
| "coupon": 8.45, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1026236, | |
| "current_ytm": 3.9, | |
| "display_name": "Lic Housing Finance Limited 8.45%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07JN9", | |
| "issue_size": null, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1621555200, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": " 4m 29d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1310.1, | |
| "current_ytm": 3.9, | |
| "display_name": "Indian Railway Finance Corporation Ltd 8.4%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07660", | |
| "issue_size": 10901868000, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1866067200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m 27d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.097151, | |
| "current_price": 986092, | |
| "current_ytm": 3.9, | |
| "display_name": "Kotak Mahindra Prime Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE916DA7PF1", | |
| "issue_size": null, | |
| "last_traded_on": 1601510400, | |
| "maturity_date": 1608681600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1090, | |
| "ttm": " 1d" | |
| }, | |
| { | |
| "coupon": 9.27, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1033648, | |
| "current_ytm": 3.9, | |
| "display_name": "Indian Railway Finance Corporation Limited 9.27%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09HO9", | |
| "issue_size": null, | |
| "last_traded_on": 1600387200, | |
| "maturity_date": 1620604800, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 4m 18d" | |
| }, | |
| { | |
| "coupon": 8.32, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1027940, | |
| "current_ytm": 3.9, | |
| "display_name": "Reliance Jio Infocomm Limited 8.32%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L07070", | |
| "issue_size": null, | |
| "last_traded_on": 1605139200, | |
| "maturity_date": 1625702400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 6m 16d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1340.02, | |
| "current_ytm": 3.9, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07138", | |
| "issue_size": 2345508000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1868054400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 2m 19d" | |
| }, | |
| { | |
| "coupon": 8.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.456406, | |
| "current_price": 1013492, | |
| "current_ytm": 3.9, | |
| "display_name": "Mahindra & Mahindra Financial Services Ltd 8.1%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE774D07SB3", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1618790400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 3m 28d" | |
| }, | |
| { | |
| "coupon": 7.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1029240, | |
| "current_ytm": 3.9, | |
| "display_name": "Small Industries Development Bank Of India Sr-Xii 7.65 Bd 15Ap21 Fvrs10Lac L.T.D 7.65%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JD2", | |
| "issue_size": null, | |
| "last_traded_on": 1592956800, | |
| "maturity_date": 1618444800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1120, | |
| "ttm": " 3m 24d" | |
| }, | |
| { | |
| "coupon": 7.19, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1207, | |
| "current_ytm": 3.9, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.19%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07881", | |
| "issue_size": 1093946000, | |
| "last_traded_on": 1606089600, | |
| "maturity_date": 1837814400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 3m 6d" | |
| }, | |
| { | |
| "coupon": 9.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1309781.25, | |
| "current_ytm": 3.9, | |
| "display_name": "Power Grid Corporation Of India Limited 9.64%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07IG7", | |
| "issue_size": null, | |
| "last_traded_on": 1595203200, | |
| "maturity_date": 1622419200, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 9d" | |
| }, | |
| { | |
| "coupon": 9.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1055295, | |
| "current_ytm": 3.89, | |
| "display_name": "Rural Electrification Corporation Limited 9.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08641", | |
| "issue_size": null, | |
| "last_traded_on": 1605657600, | |
| "maturity_date": 1636588800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 20d" | |
| }, | |
| { | |
| "coupon": 7.47, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1027220, | |
| "current_ytm": 3.89, | |
| "display_name": "Power Finance Corporation Ltd 7.47%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IJ0", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1631750400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 8m 25d" | |
| }, | |
| { | |
| "coupon": 7.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1028108, | |
| "current_ytm": 3.89, | |
| "display_name": "Lic Housing Finance Limited 7.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07KN7", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1630022400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1793, | |
| "ttm": " 8m 5d" | |
| }, | |
| { | |
| "coupon": 8.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1118.96, | |
| "current_ytm": 3.89, | |
| "display_name": "Housing & Urban Development Corporation Ltd 8.39%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07931", | |
| "issue_size": 3617927000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1698192000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 10m 3d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1500, | |
| "current_ytm": 3.89, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07153", | |
| "issue_size": 1441642000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 2025820800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 7305, | |
| "ttm": "13y 2m 19d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.316811552631579, | |
| "current_price": 1214880, | |
| "current_ytm": 38.64, | |
| "display_name": "Andhra Pradesh Expressway Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE400K07051", | |
| "issue_size": null, | |
| "last_traded_on": 1593129600, | |
| "maturity_date": 1665792000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3628, | |
| "ttm": "1y 9m 23d" | |
| }, | |
| { | |
| "coupon": 7.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1027221, | |
| "current_ytm": 3.86, | |
| "display_name": "Power Finance Corporation Ltd 7.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IM4", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1632960000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 9m 8d" | |
| }, | |
| { | |
| "coupon": 8.26, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1113.1, | |
| "current_ytm": 3.86, | |
| "display_name": "Rural Electrification Corporation Ltd 8.26%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07HR4", | |
| "issue_size": 3295136000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1695513600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 9m 2d" | |
| }, | |
| { | |
| "coupon": 7.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1031051, | |
| "current_ytm": 3.8561, | |
| "display_name": "Rural Electrification Corporation Limited 7.14%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AB1", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1639008000, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 17d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1330, | |
| "current_ytm": 3.85, | |
| "display_name": "Ntpc Ltd 8.73%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JI1", | |
| "issue_size": 913928000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1860537600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 11m 24d" | |
| }, | |
| { | |
| "coupon": 9.38, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1047121, | |
| "current_ytm": 3.85, | |
| "display_name": "Export Import Bank Of India Sr-O-08 9.38 Bd 29Sp21 Fvrs10Lac L.T.D 9.38%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08AG6", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1632873600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 9m 7d" | |
| }, | |
| { | |
| "coupon": 8.2534, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1034037, | |
| "current_ytm": 3.85, | |
| "display_name": "Lic Housing Finance Limited 8.2534%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OA6", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1631836800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 913, | |
| "ttm": " 8m 26d" | |
| }, | |
| { | |
| "coupon": 9.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1311413.75, | |
| "current_ytm": 3.845, | |
| "display_name": "Power Grid Corporation Of India Limited 9.3%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07JU6", | |
| "issue_size": null, | |
| "last_traded_on": 1595203200, | |
| "maturity_date": 1624838400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3287, | |
| "ttm": " 6m 6d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1330, | |
| "current_ytm": 3.83, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.55%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07396", | |
| "issue_size": 15958486000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1869264000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 5d" | |
| }, | |
| { | |
| "coupon": 9.9, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1028627, | |
| "current_ytm": 3.83, | |
| "display_name": "Housing Development Finance Corporation Ltd 9.9%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07GV0", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1623283200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 19d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1027123, | |
| "current_ytm": 3.83, | |
| "display_name": "Power Finance Corporation Ltd 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08IH4", | |
| "issue_size": null, | |
| "last_traded_on": 1604966400, | |
| "maturity_date": 1629072000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 7m 25d" | |
| }, | |
| { | |
| "coupon": 7.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1023296, | |
| "current_ytm": 3.82, | |
| "display_name": "Lic Housing Finance Limited 7.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07OK5", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1629676800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 700, | |
| "ttm": " 8m 1d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1045314, | |
| "current_ytm": 3.82, | |
| "display_name": "Power Finance Corporation Ltd 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08GT3", | |
| "issue_size": null, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1639008000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 2557, | |
| "ttm": " 11m 17d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1348.1, | |
| "current_ytm": 3.82, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.8%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07420", | |
| "issue_size": 2833869000, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1869264000, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 5d" | |
| }, | |
| { | |
| "coupon": 8.68, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 6701, | |
| "current_ytm": 3.82, | |
| "display_name": "National Housing Bank 8.68%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07157", | |
| "issue_size": 4219910000, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1869004800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 103250, | |
| "current_ytm": 3.81, | |
| "display_name": "Indian Railway Finance Corporation Limited 7.55%", | |
| "face_value": 100000, | |
| "frequency": "Annually", | |
| "isin": "INE053F09HT8", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1636329600, | |
| "rated_as_on": 1579478400, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 10m 17d" | |
| }, | |
| { | |
| "coupon": 6.86, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1065.4, | |
| "current_ytm": 3.81, | |
| "display_name": "India Infrastructure Finance Company Ltd 6.86%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07164", | |
| "issue_size": 2025637000, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1679788800, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "2y 3m 4d" | |
| }, | |
| { | |
| "coupon": 10.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1042708, | |
| "current_ytm": 3.8, | |
| "display_name": "Reliance Ports & Terminals Ltd 10.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE941D07125", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1626566400, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 6m 26d" | |
| }, | |
| { | |
| "coupon": 8.81, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1026831, | |
| "current_ytm": 3.8, | |
| "display_name": "Hdb Financial Services Limited 8.81%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07BY7", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1625616000, | |
| "rated_as_on": 1578441600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1106, | |
| "ttm": " 6m 15d" | |
| }, | |
| { | |
| "coupon": 8.44, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1139.99, | |
| "current_ytm": 3.8, | |
| "display_name": "Rural Electrification Corporation Ltd 8.44%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07IF7", | |
| "issue_size": 1300610000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1711238400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "3y 3m 2d" | |
| }, | |
| { | |
| "coupon": 7.74, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1324.8, | |
| "current_ytm": 3.8, | |
| "display_name": "Indian Renewable Energy Development Agency Ltd 7.74%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE202E07229", | |
| "issue_size": 4835153000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1926720000, | |
| "rated_as_on": 1581465600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "10y 30d" | |
| }, | |
| { | |
| "coupon": 7.6, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1046794, | |
| "current_ytm": 3.8, | |
| "display_name": "National Highways Authority Of India 7.6%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07FG1", | |
| "issue_size": null, | |
| "last_traded_on": 1606435200, | |
| "maturity_date": 1647561600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1824, | |
| "ttm": "1y 2m 24d" | |
| }, | |
| { | |
| "coupon": 7.17, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1032647, | |
| "current_ytm": 3.8, | |
| "display_name": "National Highways Authority Of India 7.17%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07FE6", | |
| "issue_size": null, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1640217600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": "1y 1d" | |
| }, | |
| { | |
| "coupon": 7.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 1023956, | |
| "current_ytm": 3.8, | |
| "display_name": "Housing Development Finance Corporation Ltd 7.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07RY1", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1631750400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 8m 25d" | |
| }, | |
| { | |
| "coupon": 10.1, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1317372.5, | |
| "current_ytm": 3.8, | |
| "display_name": "Power Grid Corporation Of India Ltd 10.1%", | |
| "face_value": 1250000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07DU9", | |
| "issue_size": null, | |
| "last_traded_on": 1595376000, | |
| "maturity_date": 1623456000, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 5114, | |
| "ttm": " 5m 21d" | |
| }, | |
| { | |
| "coupon": 7.14, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1154.1, | |
| "current_ytm": 3.79, | |
| "display_name": "National Highways Authority Of India 7.14%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EG4", | |
| "issue_size": 6864024000, | |
| "last_traded_on": 1605571200, | |
| "maturity_date": 1768089600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 20d" | |
| }, | |
| { | |
| "coupon": 8.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1340, | |
| "current_ytm": 3.79, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.73%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07362", | |
| "issue_size": 1478858000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1863734400, | |
| "rated_as_on": 1581638400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m" | |
| }, | |
| { | |
| "coupon": 6.72, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1030237, | |
| "current_ytm": 3.79, | |
| "display_name": "Ntpc Limited 6.72%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07KH1", | |
| "issue_size": null, | |
| "last_traded_on": 1603929600, | |
| "maturity_date": 1637712000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 2d" | |
| }, | |
| { | |
| "coupon": 8.1352, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.10161, | |
| "current_price": 1019067, | |
| "current_ytm": 3.78, | |
| "display_name": "Bajaj Housing Finance Limited 8.1352%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE377Y07045", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1622764800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1193, | |
| "ttm": " 5m 13d" | |
| }, | |
| { | |
| "coupon": 8.711, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1021277, | |
| "current_ytm": 3.78, | |
| "display_name": "Hdb Financial Services Limited 8.711%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CM0", | |
| "issue_size": null, | |
| "last_traded_on": 1599091200, | |
| "maturity_date": 1613606400, | |
| "rated_as_on": 1578441600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 728, | |
| "ttm": " 1m 27d" | |
| }, | |
| { | |
| "coupon": 7.52, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1020728, | |
| "current_ytm": 3.78, | |
| "display_name": "Small Industries Development Bank Of India Sr-Vi 7.52 Bd 10Fb21 Fvrs10Lac L.T.D 7.52%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JA8", | |
| "issue_size": null, | |
| "last_traded_on": 1594944000, | |
| "maturity_date": 1612915200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1127, | |
| "ttm": " 1m 19d" | |
| }, | |
| { | |
| "coupon": 8.8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1002299, | |
| "current_ytm": 3.77, | |
| "display_name": "Lic Housing Finance Limited 8.8%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07NQ4", | |
| "issue_size": null, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1608768000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 2d" | |
| }, | |
| { | |
| "coupon": 10.25, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1045814, | |
| "current_ytm": 3.76, | |
| "display_name": "Sikka Ports & Terminals Limited 10.25%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE941D08065", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1629590400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1094, | |
| "ttm": " 8m" | |
| }, | |
| { | |
| "coupon": 7.59, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1013100, | |
| "current_ytm": 3.75, | |
| "display_name": "Small Industries Development Bank Of India Sr I 7.59 Bd 07Ot22 Fvrs10Lac L.T.D 7.59%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JJ9", | |
| "issue_size": null, | |
| "last_traded_on": 1590537600, | |
| "maturity_date": 1665100800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1278, | |
| "ttm": "1y 9m 15d" | |
| }, | |
| { | |
| "coupon": 7.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1018382, | |
| "current_ytm": 3.75, | |
| "display_name": "Power Finance Corporation Ltd 7.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08JK6", | |
| "issue_size": null, | |
| "last_traded_on": 1602633600, | |
| "maturity_date": 1617580800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1148, | |
| "ttm": " 3m 14d" | |
| }, | |
| { | |
| "coupon": 9.61, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1031797, | |
| "current_ytm": 3.75, | |
| "display_name": "Power Finance Corporation Ltd 9.61%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DQ6", | |
| "issue_size": null, | |
| "last_traded_on": 1607299200, | |
| "maturity_date": 1624924800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 6m 7d" | |
| }, | |
| { | |
| "coupon": 8.35, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 10204000, | |
| "current_ytm": 3.74, | |
| "display_name": "Housing Development Finance Corporation Ltd 8.35%", | |
| "face_value": 10000000, | |
| "frequency": "Annually", | |
| "isin": "INE001A07OS0", | |
| "issue_size": null, | |
| "last_traded_on": 1605052800, | |
| "maturity_date": 1619395200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 4d" | |
| }, | |
| { | |
| "coupon": 8.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.491299, | |
| "current_price": 1029206, | |
| "current_ytm": 3.73, | |
| "display_name": "Reliance Jio Infocomm Limited 8.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE110L07112", | |
| "issue_size": null, | |
| "last_traded_on": 1604620800, | |
| "maturity_date": 1623715200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 5m 24d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1266487, | |
| "current_ytm": 3.718, | |
| "display_name": "Hdb Financial Services Limited", | |
| "face_value": 1000000, | |
| "frequency": "At maturity", | |
| "isin": "INE756I07BX9", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1623110400, | |
| "rated_as_on": 1578441600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1103, | |
| "ttm": " 5m 17d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1246.18, | |
| "current_ytm": 3.71, | |
| "display_name": "National Highways Authority Of India 8.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07CB9", | |
| "issue_size": 32830238000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1800835200, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "6y 1m 3d" | |
| }, | |
| { | |
| "coupon": 8.71, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.100643, | |
| "current_price": 1020389, | |
| "current_ytm": 3.71, | |
| "display_name": "Hdb Financial Services Limited 8.71%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE756I07CQ1", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1621209600, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 731, | |
| "ttm": " 4m 25d" | |
| }, | |
| { | |
| "coupon": 8.93, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 6835, | |
| "current_ytm": 3.7, | |
| "display_name": "National Housing Bank 8.93%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07181", | |
| "issue_size": 3326085000, | |
| "last_traded_on": 1608249600, | |
| "maturity_date": 1869004800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 2d" | |
| }, | |
| { | |
| "coupon": 8.33, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.132945, | |
| "current_price": 1016368, | |
| "current_ytm": 3.66, | |
| "display_name": "Ntpc Limited (Formerly National Thermal Power Corporation Limited) 8.33%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE733E07JZ5", | |
| "issue_size": null, | |
| "last_traded_on": 1602806400, | |
| "maturity_date": 1614124800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1827, | |
| "ttm": " 2m 2d" | |
| }, | |
| { | |
| "coupon": 7.04, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.922021, | |
| "current_price": 1170, | |
| "current_ytm": 3.66, | |
| "display_name": "Housing & Urban Development Corporation Ltd 7.04%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE031A07AQ0", | |
| "issue_size": 481645000, | |
| "last_traded_on": 1594857600, | |
| "maturity_date": 1773532800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 2m 21d" | |
| }, | |
| { | |
| "coupon": 7.24, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1029891, | |
| "current_ytm": 3.6542, | |
| "display_name": "Rural Electrification Corporation Limited 7.24%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08997", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1634774400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 9m 29d" | |
| }, | |
| { | |
| "coupon": 0, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 14749440, | |
| "current_ytm": 3.65, | |
| "display_name": "Housing Development Finance Corporation Ltd", | |
| "face_value": 10000000, | |
| "frequency": "At maturity", | |
| "isin": "INE001A07OW2", | |
| "issue_size": null, | |
| "last_traded_on": 1607558400, | |
| "maturity_date": 1620604800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 18d" | |
| }, | |
| { | |
| "coupon": 7.29, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1172, | |
| "current_ytm": 3.65, | |
| "display_name": "National Bank For Agriculture & Rural Development 7.29%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE261F07024", | |
| "issue_size": 2385516000, | |
| "last_traded_on": 1607644800, | |
| "maturity_date": 1774224000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3652, | |
| "ttm": "5y 3m 1d" | |
| }, | |
| { | |
| "coupon": 8.55, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.10161, | |
| "current_price": 1022194, | |
| "current_ytm": 3.65, | |
| "display_name": "Bajaj Finance Limited 8.55%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE296A07LC6", | |
| "issue_size": null, | |
| "last_traded_on": 1604448000, | |
| "maturity_date": 1619568000, | |
| "rated_as_on": 1581897600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 4m 6d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1032500, | |
| "current_ytm": 3.64, | |
| "display_name": "Small Industries Development Bank Of India Sr-Iv 8.4 Bd 10Ag21 Fvrs10Lac L.T.D 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JH3", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1628553600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 7m 19d" | |
| }, | |
| { | |
| "coupon": 7.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1009792, | |
| "current_ytm": 3.63, | |
| "display_name": "Lic Housing Finance Limited 7.88%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07MT0", | |
| "issue_size": null, | |
| "last_traded_on": 1604361600, | |
| "maturity_date": 1611792000, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1112, | |
| "ttm": " 1m 6d" | |
| }, | |
| { | |
| "coupon": 8.39, | |
| "credit_rating": "A1+", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1027403, | |
| "current_ytm": 3.63, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-19-D 8.39 Bd 19Jl21 Fvrs10Lac L.T.D 8.39%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AL1", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1626652800, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 6m 27d" | |
| }, | |
| { | |
| "coupon": 7.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1022200, | |
| "current_ytm": 3.62, | |
| "display_name": "Small Industries Development Bank Of India Sr-I 7.5 Bd 16Jl21 Fvrs10Lac L.T.D 7.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JE0", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1626393600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1187, | |
| "ttm": " 6m 24d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1356.6, | |
| "current_ytm": 3.61, | |
| "display_name": "National Highways Authority Of India 8.75%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07DF8", | |
| "issue_size": 11898075000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1864944000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m 14d" | |
| }, | |
| { | |
| "coupon": 8.79, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.147967, | |
| "current_price": 1349.89, | |
| "current_ytm": 3.61, | |
| "display_name": "Nhpc Ltd 8.79%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE848E07559", | |
| "issue_size": 856065000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1856736000, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "7y 10m 11d" | |
| }, | |
| { | |
| "coupon": 8.15, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1023129, | |
| "current_ytm": 3.61, | |
| "display_name": "Rec Limited 8.15%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08BN4", | |
| "issue_size": null, | |
| "last_traded_on": 1607472000, | |
| "maturity_date": 1623974400, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 823, | |
| "ttm": " 5m 27d" | |
| }, | |
| { | |
| "coupon": 6.95, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1017038, | |
| "current_ytm": 3.6, | |
| "display_name": "Lic Housing Finance Limited 6.95%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07ON9", | |
| "issue_size": null, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1622764800, | |
| "rated_as_on": null, | |
| "rating_agency": null, | |
| "score": 5, | |
| "tenure": 578, | |
| "ttm": " 5m 13d" | |
| }, | |
| { | |
| "coupon": 8.63, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.218295, | |
| "current_price": 6750, | |
| "current_ytm": 3.6, | |
| "display_name": "National Housing Bank 8.63%", | |
| "face_value": 5000, | |
| "frequency": "Annually", | |
| "isin": "INE557F07090", | |
| "issue_size": 4071615000, | |
| "last_traded_on": 1605744000, | |
| "maturity_date": 1862956800, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 22d" | |
| }, | |
| { | |
| "coupon": 7.2, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1037113, | |
| "current_ytm": 3.6, | |
| "display_name": "Power Grid Corporation Of India Limited 7.2%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07OD2", | |
| "issue_size": null, | |
| "last_traded_on": 1606348800, | |
| "maturity_date": 1640044800, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 29d" | |
| }, | |
| { | |
| "coupon": 7.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1011900, | |
| "current_ytm": 3.6, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-18H 7.4 Bd 01Fb21 Fvrs10Lac L.T.D 7.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08956", | |
| "issue_size": null, | |
| "last_traded_on": 1602028800, | |
| "maturity_date": 1612137600, | |
| "rated_as_on": 1577923200, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1145, | |
| "ttm": " 1m 10d" | |
| }, | |
| { | |
| "coupon": 8.5, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1025456, | |
| "current_ytm": 3.6, | |
| "display_name": "Small Industries Development Bank Of India Sr-Ii 8.5 Bd 21Ju21 Fvrs10Lac L.T.D 8.5%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JF7", | |
| "issue_size": null, | |
| "last_traded_on": 1606953600, | |
| "maturity_date": 1624233600, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1119, | |
| "ttm": " 5m 30d" | |
| }, | |
| { | |
| "coupon": 8.12, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1250, | |
| "current_ytm": 3.59, | |
| "display_name": "Rec Ltd 8.12%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE020B07GH7", | |
| "issue_size": 21603260000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1806105600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5478, | |
| "ttm": "6y 3m 5d" | |
| }, | |
| { | |
| "coupon": 8.37, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1029487, | |
| "current_ytm": 3.59, | |
| "display_name": "National Bank For Agriculture And Rural Development Sr-19 E 8.37 Bd 03Ag21 Fvrs10Lac L.T.D 8.37%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE261F08AM9", | |
| "issue_size": null, | |
| "last_traded_on": 1607904000, | |
| "maturity_date": 1627948800, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1096, | |
| "ttm": " 7m 12d" | |
| }, | |
| { | |
| "coupon": 7.89, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.284009083333333, | |
| "current_price": 1016516, | |
| "current_ytm": 3.59, | |
| "display_name": "Small Industries Development Bank Of India Series Iii 7.89 Bd 15Nv22 Fvrs10Lac L.T.D 7.89%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE556F08JL5", | |
| "issue_size": null, | |
| "last_traded_on": 1608076800, | |
| "maturity_date": 1668470400, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1280, | |
| "ttm": "1y 10m 24d" | |
| }, | |
| { | |
| "coupon": 7.73, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.457674, | |
| "current_price": 1019431, | |
| "current_ytm": 3.58, | |
| "display_name": "Rural Electrification Corporation Limited 7.73%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE020B08AW7", | |
| "issue_size": null, | |
| "last_traded_on": 1608163200, | |
| "maturity_date": 1623715200, | |
| "rated_as_on": 1576713600, | |
| "rating_agency": "india rating and research", | |
| "score": 5, | |
| "tenure": 1188, | |
| "ttm": " 5m 24d" | |
| }, | |
| { | |
| "coupon": 8.88, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1374.65, | |
| "current_ytm": 3.57, | |
| "display_name": "Indian Railway Finance Corporation Ltd 8.88%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07744", | |
| "issue_size": 4364141000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1869177600, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 3m 4d" | |
| }, | |
| { | |
| "coupon": 6.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1030148, | |
| "current_ytm": 3.57, | |
| "display_name": "Indian Railway Finance Corporation Limited 6.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07942", | |
| "issue_size": null, | |
| "last_traded_on": 1606262400, | |
| "maturity_date": 1637712000, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 11m 2d" | |
| }, | |
| { | |
| "coupon": 8.4, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.081936, | |
| "current_price": 1024340, | |
| "current_ytm": 3.55, | |
| "display_name": "Power Grid Corporation Of India Limited 8.4%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE752E07MN5", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1622073600, | |
| "rated_as_on": 1580688000, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 2192, | |
| "ttm": " 5m 5d" | |
| }, | |
| { | |
| "coupon": 7.39, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.054412, | |
| "current_price": 1175.1, | |
| "current_ytm": 3.55, | |
| "display_name": "National Highways Authority Of India 7.39%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE906B07EH2", | |
| "issue_size": 6557603000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1768089600, | |
| "rated_as_on": 1580428800, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": "5y 20d" | |
| }, | |
| { | |
| "coupon": 9.18, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1017352, | |
| "current_ytm": 3.54, | |
| "display_name": "Power Finance Corporation Ltd 9.18%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DM5", | |
| "issue_size": null, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1618444800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 3m 24d" | |
| }, | |
| { | |
| "coupon": 8.75, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.65383, | |
| "current_price": 1014510, | |
| "current_ytm": 3.54, | |
| "display_name": "Lic Housing Finance Limited 8.75%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE115A07IY8", | |
| "issue_size": null, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1615161600, | |
| "rated_as_on": 1568764800, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 2m 14d" | |
| }, | |
| { | |
| "coupon": 8.3, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.14955, | |
| "current_price": 1229, | |
| "current_ytm": 3.52, | |
| "display_name": "India Infrastructure Finance Company Ltd 8.3%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE787H07032", | |
| "issue_size": 22577000, | |
| "last_traded_on": 1606176000, | |
| "maturity_date": 1774656000, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "5y 3m 6d" | |
| }, | |
| { | |
| "coupon": 8, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1020400, | |
| "current_ytm": 3.51, | |
| "display_name": "Export Import Bank Of India Sr-T-03 8 Bd 27My21 Fvrs10Lac L.T.D 8.0%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE514E08FD2", | |
| "issue_size": null, | |
| "last_traded_on": 1607385600, | |
| "maturity_date": 1622073600, | |
| "rated_as_on": 1578614400, | |
| "rating_agency": "icra", | |
| "score": 5, | |
| "tenure": 1826, | |
| "ttm": " 5m 5d" | |
| }, | |
| { | |
| "coupon": 8.65, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1363, | |
| "current_ytm": 3.47, | |
| "display_name": "Indian Railway Finance Corporation Ltd 8.65%", | |
| "face_value": 1000, | |
| "frequency": "Annually", | |
| "isin": "INE053F07686", | |
| "issue_size": 6883591000, | |
| "last_traded_on": 1608508800, | |
| "maturity_date": 1866067200, | |
| "rated_as_on": 1578873600, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": "8y 1m 27d" | |
| }, | |
| { | |
| "coupon": 8.64, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.328983357142857, | |
| "current_price": 1021412, | |
| "current_ytm": 3.45, | |
| "display_name": "Indian Railway Finance Corporation Limited 8.64%", | |
| "face_value": 1000000, | |
| "frequency": "Semi annually", | |
| "isin": "INE053F09EH0", | |
| "issue_size": null, | |
| "last_traded_on": 1607990400, | |
| "maturity_date": 1621209600, | |
| "rated_as_on": 1575590400, | |
| "rating_agency": "care", | |
| "score": 5, | |
| "tenure": 5479, | |
| "ttm": " 4m 25d" | |
| }, | |
| { | |
| "coupon": 9.7, | |
| "credit_rating": "AAA", | |
| "current_pod": 0.432673, | |
| "current_price": 1032964, | |
| "current_ytm": 3.45, | |
| "display_name": "Power Finance Corporation Ltd 9.7%", | |
| "face_value": 1000000, | |
| "frequency": "Annually", | |
| "isin": "INE134E08DN3", | |
| "issue_size": null, | |
| "last_traded_on": 1605830400, | |
| "maturity_date": 1623196800, | |
| "rated_as_on": 1574035200, | |
| "rating_agency": "crisil", | |
| "score": 5, | |
| "tenure": 3653, | |
| "ttm": " 5m 18d" | |
| }, | |
| { | |
| "coupon": 8.18, | |
| "credit_rat |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment