โ† All skills
Tencent SkillHub ยท Developer Tools

Npsnav

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

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

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

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 13 sections Open source page

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

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

MethodEndpointDescriptionResponseGET/api/schemesList all scheme codes and namesJSONGET/api/{scheme_code}Latest NAV for a schemePlain textGET/api/latestLatest NAV for all funds (detailed)JSONGET/api/latest-minLatest NAV for all funds (minimal)JSONGET/api/detailed/{scheme_code}Fund data with returnsJSONGET/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

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc