{
  "schemaVersion": "1.0",
  "item": {
    "slug": "npsnav",
    "name": "Npsnav",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kanaksinghal/npsnav",
    "canonicalUrl": "https://clawhub.ai/kanaksinghal/npsnav",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/npsnav",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=npsnav",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/npsnav"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/npsnav",
    "agentPageUrl": "https://openagent3.xyz/skills/npsnav/agent",
    "manifestUrl": "https://openagent3.xyz/skills/npsnav/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/npsnav/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "NPS NAV Skill",
        "body": "Query Indian NPS (National Pension System) fund data — NAV, scheme info, returns, history — using the free npsnav.in API."
      },
      {
        "title": "Setup",
        "body": "No authentication or API keys required. The API is completely free for non-commercial use.\n\nEnsure curl and jq are installed."
      },
      {
        "title": "What is an NPS Scheme Code?",
        "body": "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."
      },
      {
        "title": "Base URL",
        "body": "https://npsnav.in/api"
      },
      {
        "title": "Get latest NAV for a scheme (plain text)",
        "body": "The simplest endpoint — returns just the NAV number as plain text. Perfect for spreadsheets and quick lookups.\n\ncurl -s \"https://npsnav.in/api/SM001001\"\n# → 46.7686"
      },
      {
        "title": "List all scheme codes",
        "body": "curl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | {code: .[0], name: .[1]}'"
      },
      {
        "title": "Get latest NAV for all funds (detailed)",
        "body": "curl -s \"https://npsnav.in/api/latest\" | jq '.data[:5]'"
      },
      {
        "title": "Get latest NAV for all funds (minimal)",
        "body": "curl -s \"https://npsnav.in/api/latest-min\" | jq '.data[:5]'"
      },
      {
        "title": "Get detailed fund data with returns",
        "body": "curl -s \"https://npsnav.in/api/detailed/SM001001\" | jq '.'"
      },
      {
        "title": "Get historical NAV data",
        "body": "curl -s \"https://npsnav.in/api/historical/SM001001\" | jq '.data[:5]'"
      },
      {
        "title": "More Examples",
        "body": "# Get NAV for SBI Pension Fund (Central Govt)\ncurl -s \"https://npsnav.in/api/SM001001\"\n\n# List all NPS scheme names\ncurl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | .[1]'\n\n# Get detailed data with returns for a scheme\ncurl -s \"https://npsnav.in/api/detailed/SM001001\" | jq '{name: .[\"Scheme Name\"], nav: .NAV, \"1Y\": .[\"1Y\"], \"3Y\": .[\"3Y\"]}'\n\n# Get latest NAV and date for all funds\ncurl -s \"https://npsnav.in/api/latest\" | jq '.data[] | {code: .[\"Scheme Code\"], name: .[\"Scheme Name\"], nav: .NAV}'\n\n# Get historical NAV for a scheme\ncurl -s \"https://npsnav.in/api/historical/SM001001\" | jq '[.data[0], .data[-1]] | {latest: .[0], oldest: .[1]}'\n\n# Find a scheme by name (filter from schemes list)\ncurl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | select(.[1] | test(\"HDFC\")) | {code: .[0], name: .[1]}'"
      },
      {
        "title": "Endpoints Reference",
        "body": "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"
      },
      {
        "title": "Notes",
        "body": "Scheme codes follow the format SM + 6 digits (e.g. SM001001)\nDates in responses use DD-MM-YYYY format\nThe Simple API (/api/{scheme_code}) returns plain text, not JSON\nThe /api/schemes endpoint returns all ~151 NPS schemes\nNo API keys or rate limits; unlimited non-commercial usage\nData is sourced from Protean eGov Technologies and NPS Trust"
      }
    ],
    "body": "NPS NAV Skill\n\nQuery Indian NPS (National Pension System) fund data — NAV, scheme info, returns, history — using the free npsnav.in API.\n\nSetup\n\nNo authentication or API keys required. The API is completely free for non-commercial use.\n\nEnsure curl and jq are installed.\n\nWhat is an NPS Scheme Code?\n\nNPS 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.\n\nBase URL\nhttps://npsnav.in/api\n\nUsage\nGet latest NAV for a scheme (plain text)\n\nThe simplest endpoint — returns just the NAV number as plain text. Perfect for spreadsheets and quick lookups.\n\ncurl -s \"https://npsnav.in/api/SM001001\"\n# → 46.7686\n\nList all scheme codes\ncurl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | {code: .[0], name: .[1]}'\n\nGet latest NAV for all funds (detailed)\ncurl -s \"https://npsnav.in/api/latest\" | jq '.data[:5]'\n\nGet latest NAV for all funds (minimal)\ncurl -s \"https://npsnav.in/api/latest-min\" | jq '.data[:5]'\n\nGet detailed fund data with returns\ncurl -s \"https://npsnav.in/api/detailed/SM001001\" | jq '.'\n\nGet historical NAV data\ncurl -s \"https://npsnav.in/api/historical/SM001001\" | jq '.data[:5]'\n\nMore Examples\n# Get NAV for SBI Pension Fund (Central Govt)\ncurl -s \"https://npsnav.in/api/SM001001\"\n\n# List all NPS scheme names\ncurl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | .[1]'\n\n# Get detailed data with returns for a scheme\ncurl -s \"https://npsnav.in/api/detailed/SM001001\" | jq '{name: .[\"Scheme Name\"], nav: .NAV, \"1Y\": .[\"1Y\"], \"3Y\": .[\"3Y\"]}'\n\n# Get latest NAV and date for all funds\ncurl -s \"https://npsnav.in/api/latest\" | jq '.data[] | {code: .[\"Scheme Code\"], name: .[\"Scheme Name\"], nav: .NAV}'\n\n# Get historical NAV for a scheme\ncurl -s \"https://npsnav.in/api/historical/SM001001\" | jq '[.data[0], .data[-1]] | {latest: .[0], oldest: .[1]}'\n\n# Find a scheme by name (filter from schemes list)\ncurl -s \"https://npsnav.in/api/schemes\" | jq '.data[] | select(.[1] | test(\"HDFC\")) | {code: .[0], name: .[1]}'\n\nEndpoints Reference\nMethod\tEndpoint\tDescription\tResponse\nGET\t/api/schemes\tList all scheme codes and names\tJSON\nGET\t/api/{scheme_code}\tLatest NAV for a scheme\tPlain text\nGET\t/api/latest\tLatest NAV for all funds (detailed)\tJSON\nGET\t/api/latest-min\tLatest NAV for all funds (minimal)\tJSON\nGET\t/api/detailed/{scheme_code}\tFund data with returns\tJSON\nGET\t/api/historical/{scheme_code}\tHistorical NAV data\tJSON\nNotes\nScheme codes follow the format SM + 6 digits (e.g. SM001001)\nDates in responses use DD-MM-YYYY format\nThe Simple API (/api/{scheme_code}) returns plain text, not JSON\nThe /api/schemes endpoint returns all ~151 NPS schemes\nNo API keys or rate limits; unlimited non-commercial usage\nData is sourced from Protean eGov Technologies and NPS Trust"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kanaksinghal/npsnav",
    "publisherUrl": "https://clawhub.ai/kanaksinghal/npsnav",
    "owner": "kanaksinghal",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/npsnav",
    "downloadUrl": "https://openagent3.xyz/downloads/npsnav",
    "agentUrl": "https://openagent3.xyz/skills/npsnav/agent",
    "manifestUrl": "https://openagent3.xyz/skills/npsnav/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/npsnav/agent.md"
  }
}