> ## Documentation Index
> Fetch the complete documentation index at: https://docs.0d.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# Last NAV Report & Deltas

> Get the latest Net Asset Value report with performance deltas



## OpenAPI

````yaml open-apis/0d.json get /vaults/{vault_id}/nav/latest
openapi: 3.1.0
info:
  title: zerod_api
  description: 0D Master API for vaults
  license:
    name: MIT
    identifier: MIT
  version: 0.1.0
servers:
  - url: https://api.0d.finance/{version}
    variables:
      version:
        default: v1
        enum:
          - v1
security: []
tags:
  - name: zerod_bin
    description: 0d, master api
  - name: User
    description: User profile endpoints
  - name: Vaults
    description: Vault management endpoints
paths:
  /vaults/{vault_id}/nav/latest:
    get:
      tags:
        - Vaults
      operationId: get_vault_nav_latest
      parameters:
        - name: vault_id
          in: path
          description: Vault identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Latest NAV report & deltas
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/NavLatestDTO'
        '404':
          description: Vault not found
        '500':
          description: Internal server error
components:
  schemas:
    NavLatestDTO:
      type: object
      required:
        - date
        - aum
        - var_since_prev_pct
        - apr_since_prev_pct
        - report_url
      properties:
        apr_since_prev_pct:
          type: number
          format: double
        aum:
          type: string
        date:
          type: string
        report_url:
          type: string
        var_since_prev_pct:
          type: number
          format: double

````