SGB Endpoints
Access Sovereign Gold Bond data sourced from the Reserve Bank of India.
Plan Requirement: Basic or higher
SGB endpoints require a Basic plan or higher. Free plan users will receive a 403 response.
Sovereign Gold Bonds (SGBs) are government securities denominated in grams of gold, issued by the Reserve Bank of India (RBI) on behalf of the Government of India. SGB data is updated daily at 8 AM IST.
GET
/v1/sgbBasic+Retrieve a paginated list of Sovereign Gold Bond series.
Query Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
page | number | Optional | 1 | Page number for pagination |
limit | number | Optional | 10 | Number of results per page (max 100) |
Example Request
curl -X GET "https://api.ipoguruji.com/v1/sgb?limit=5" \ -H "X-API-Key: ipg_live_your_api_key_here"Success Response200
{
"success": true,
"data": [
{
"id": "sgb_2025_26_s4",
"seriesName": "Sovereign Gold Bond 2025-26 Series IV",
"tranche": "2025-26 Series IV",
"issuePrice": 6250,
"discountedPrice": 6200,
"discountDescription": "Rs 50/gram discount for digital payment",
"interestRate": 2.5,
"interestPayment": "Semi-annual",
"tenure": "8 years",
"prematureRedemption": "After 5th year on interest payment dates",
"maxInvestment": "4 kg for individuals, 20 kg for trusts",
"minInvestment": "1 gram",
"status": "open",
"dates": {
"openDate": "2026-02-10T00:00:00.000Z",
"closeDate": "2026-02-14T00:00:00.000Z",
"issuanceDate": "2026-02-19T00:00:00.000Z",
"maturityDate": "2034-02-19T00:00:00.000Z"
},
"goldPriceReference": 6250,
"lastUpdated": "2026-02-09T03:00:00.000Z"
},
{
"id": "sgb_2025_26_s3",
"seriesName": "Sovereign Gold Bond 2025-26 Series III",
"tranche": "2025-26 Series III",
"issuePrice": 6100,
"discountedPrice": 6050,
"discountDescription": "Rs 50/gram discount for digital payment",
"interestRate": 2.5,
"interestPayment": "Semi-annual",
"tenure": "8 years",
"prematureRedemption": "After 5th year on interest payment dates",
"maxInvestment": "4 kg for individuals, 20 kg for trusts",
"minInvestment": "1 gram",
"status": "closed",
"dates": {
"openDate": "2025-12-15T00:00:00.000Z",
"closeDate": "2025-12-19T00:00:00.000Z",
"issuanceDate": "2025-12-24T00:00:00.000Z",
"maturityDate": "2033-12-24T00:00:00.000Z"
},
"goldPriceReference": 6100,
"lastUpdated": "2026-02-09T03:00:00.000Z"
}
],
"meta": {
"page": 1,
"limit": 5,
"total": 28,
"totalPages": 6,
"hasNextPage": true,
"hasPrevPage": false
},
"links": {
"self": "/v1/sgb?limit=5&page=1",
"next": "/v1/sgb?limit=5&page=2",
"prev": null
},
"disclaimer": "Data aggregated from publicly accessible sources. Not investment advice.",
"timestamp": "2026-02-09T14:30:00.000Z",
"requestId": "req_s7g8b9l0s1"
}GET
/v1/sgb/:idBasic+Retrieve detailed information for a specific SGB series by its ID.
Path Parameters
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
id | string | Required | - | Unique identifier of the SGB series (e.g., sgb_2025_26_s4) |
Example Request
curl -X GET "https://api.ipoguruji.com/v1/sgb/sgb_2025_26_s4" \ -H "X-API-Key: ipg_live_your_api_key_here"Success Response200
{
"success": true,
"data": {
"id": "sgb_2025_26_s4",
"seriesName": "Sovereign Gold Bond 2025-26 Series IV",
"tranche": "2025-26 Series IV",
"issuePrice": 6250,
"discountedPrice": 6200,
"discountDescription": "Rs 50/gram discount for digital payment",
"interestRate": 2.5,
"interestPayment": "Semi-annual",
"tenure": "8 years",
"prematureRedemption": "After 5th year on interest payment dates",
"maxInvestment": "4 kg for individuals, 20 kg for trusts",
"minInvestment": "1 gram",
"status": "open",
"dates": {
"openDate": "2026-02-10T00:00:00.000Z",
"closeDate": "2026-02-14T00:00:00.000Z",
"issuanceDate": "2026-02-19T00:00:00.000Z",
"maturityDate": "2034-02-19T00:00:00.000Z"
},
"goldPriceReference": 6250,
"lastUpdated": "2026-02-09T03:00:00.000Z"
},
"disclaimer": "Data aggregated from publicly accessible sources. Not investment advice.",
"timestamp": "2026-02-09T14:30:00.000Z",
"requestId": "req_s7g8b1d2t3"
}Not Found Response404
{
"success": false,
"error": {
"code": "NOT_001",
"message": "SGB not found with id: sgb_invalid_id",
"documentation": "https://docs.ipoguruji.com/errors/NOT_001"
},
"disclaimer": "Data aggregated from publicly accessible sources. Not investment advice.",
"timestamp": "2026-02-09T14:30:00.000Z",
"requestId": "req_n0tf0und02"
}