# India Mutual Fund NAV & Metadata Lookup

> India Mutual Fund NAV & Metadata Lookup is a paid API for AI agents from stockapi.hillguava.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns NAV, metadata, and returns for an Indian mutual fund scheme identified by its AMFI scheme code

## Facts

- Endpoint: GET https://stockapi.hillguava.xyz/mutualfund/:scheme_code
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/india-mutual-fund-nav-metadata-lookup-6426bc64
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LkIIwMYD7HjkqyFiLJOpj

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability india-mutual-fund-nav-metadata-lookup-6426bc64
```

Example prompt: What is the current NAV and returns data for the AMFI mutual fund scheme with code 120503?

## When to prefer this

Use this endpoint when you need NAV, metadata, or returns for a specific Indian mutual fund scheme identified by its AMFI scheme code; prefer over stock quote endpoints when dealing with mutual funds rather than equities

## Known failure modes

- Invalid or unknown scheme_code returns 404 or error response
- Scheme code for a discontinued/merged fund may return no data
- Missing scheme_code path parameter causes a 400 bad request
- Network or upstream data source unavailability returns 5xx

## How this service works

Mutual fund NAV, metadata, and returns.

## Output

Returns the current NAV, scheme metadata (fund name, category, fund house), and historical returns for the specified AMFI mutual fund scheme code

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "scheme_code"
     ],
     "properties": {
      "scheme_code": {
       "type": "string",
       "description": "AMFI scheme code, e.g. 120503"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/india-mutual-fund-nav-metadata-lookup-6426bc64/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from stockapi.hillguava.xyz](https://www.zero.xyz/host/stockapi.hillguava.xyz/llms.txt)
