npsnav

Query Indian NPS (National Pension System) fund NAV data, scheme info, returns, and history via the free npsnav.in REST API.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "npsnav" with this command: npx skills add kanaksinghal/npsnav

NPS NAV Skill

Query Indian NPS (National Pension System) fund data — NAV, scheme info, returns, history — using the free npsnav.in API.

Setup

No authentication or API keys required. The API is completely free for non-commercial use.

Ensure curl and jq are installed.

What is an NPS Scheme Code?

NPS scheme codes follow the format SM followed by 6 digits (e.g. SM001001). Each code uniquely identifies an NPS fund managed by a Pension Fund Manager (PFM). Scheme codes can be discovered via the Schemes API or from the full list of NPS funds.

Base URL

https://npsnav.in/api

Usage

Get latest NAV for a scheme (plain text)

The simplest endpoint — returns just the NAV number as plain text. Perfect for spreadsheets and quick lookups.

curl -s "https://npsnav.in/api/SM001001"
# → 46.7686

List all scheme codes

curl -s "https://npsnav.in/api/schemes" | jq '.data[] | {code: .[0], name: .[1]}'

Get latest NAV for all funds (detailed)

curl -s "https://npsnav.in/api/latest" | jq '.data[:5]'

Get latest NAV for all funds (minimal)

curl -s "https://npsnav.in/api/latest-min" | jq '.data[:5]'

Get detailed fund data with returns

curl -s "https://npsnav.in/api/detailed/SM001001" | jq '.'

Get historical NAV data

curl -s "https://npsnav.in/api/historical/SM001001" | jq '.data[:5]'

More Examples

# Get NAV for SBI Pension Fund (Central Govt)
curl -s "https://npsnav.in/api/SM001001"

# List all NPS scheme names
curl -s "https://npsnav.in/api/schemes" | jq '.data[] | .[1]'

# Get detailed data with returns for a scheme
curl -s "https://npsnav.in/api/detailed/SM001001" | jq '{name: .["Scheme Name"], nav: .NAV, "1Y": .["1Y"], "3Y": .["3Y"]}'

# Get latest NAV and date for all funds
curl -s "https://npsnav.in/api/latest" | jq '.data[] | {code: .["Scheme Code"], name: .["Scheme Name"], nav: .NAV}'

# Get historical NAV for a scheme
curl -s "https://npsnav.in/api/historical/SM001001" | jq '[.data[0], .data[-1]] | {latest: .[0], oldest: .[1]}'

# Find a scheme by name (filter from schemes list)
curl -s "https://npsnav.in/api/schemes" | jq '.data[] | select(.[1] | test("HDFC")) | {code: .[0], name: .[1]}'

Endpoints Reference

MethodEndpointDescriptionResponse
GET/api/schemesList all scheme codes and namesJSON
GET/api/{scheme_code}Latest NAV for a schemePlain text
GET/api/latestLatest NAV for all funds (detailed)JSON
GET/api/latest-minLatest NAV for all funds (minimal)JSON
GET/api/detailed/{scheme_code}Fund data with returnsJSON
GET/api/historical/{scheme_code}Historical NAV dataJSON

Notes

  • Scheme codes follow the format SM + 6 digits (e.g. SM001001)
  • Dates in responses use DD-MM-YYYY format
  • The Simple API (/api/{scheme_code}) returns plain text, not JSON
  • The /api/schemes endpoint returns all ~151 NPS schemes
  • No API keys or rate limits; unlimited non-commercial usage
  • Data is sourced from Protean eGov Technologies and NPS Trust

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

qwencloud-model-selector

[QwenCloud] Recommend the best Qwen model and parameters. TRIGGER when: choosing between Qwen models, comparing Qwen model pricing, understanding Qwen model...

Registry SourceRecently Updated
General

deployment-manager

You are a deployment manager with expertise in release orchestration, deployment strategies, and production reliability. Use when: release orchestration and...

Registry SourceRecently Updated
General

Hk Stock Morning Report

Generate HK stock market morning report (股市晨報) for bank trading desks. Triggers: "生成晨报", "股市晨报", "今日股市", "港股晨報" 報告結構(5部分): 1. 市場回顧(恒指/科指/國指 + 強弱勢股) 2. 南下資金(總...

Registry SourceRecently Updated
General

Story Long Scan

长篇网文扫榜。分析起点、番茄、晋江等平台排行榜数据,提炼市场趋势与热门题材。 触发方式:/story-long-scan、/长篇扫榜、「长篇什么火」「起点排行」

Registry SourceRecently Updated