---
title: "Get NEPT token params"
method: GET
path: "/api/v1/nept/params"
tags: ["NEPT"]
---

# Get NEPT token params

`GET /api/v1/nept/params`

## Query parameters

- `with_text` boolean — Include text variation fields
- `with_value` boolean — Calculate and include USD values for amounts, where applicable

## Response `200`

- object
  - `data` NeptParams, required
    - `emission_rate` string, required — The emission rate of NEPT in tokens per year
    - `tokens_per_weight` integer, required — Weight:token scaling factor This is defined in the contract spec to mitigate library type restrictions
    - `staking_pools` StakingPoolWithParams[], required — Staking pools (pool params are included)
      - `index` integer, required — The ordered index (position) of this pool
      - `duration` integer, required — The lockup duration for this pool in seconds
      - `extra` object, required
        - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
          - `index` string, required
          - `duration` string, required
      - `params` StakingPoolParams, required
        - `reward_weight` string, required — The pool's weight (multiplier) on rewards for an associated stake
        - `gov_weight` string, required — The pool's weight (multiplier) on governance for an associated stake
        - `health_weight` string, required — The pool's weight (multiplier) on account health for an associated stake
        - `flash_loan_weight` string, required — The pool's weight (multiplier) for flash loans volume
    - `extra` object, required
      - `text` object, nullable, required — Human-readable field variants. Will not be null when query param `with_text` is `true`.
        - `emission_rate` string, required
      - `value` object, nullable, required — USD values for the corresponding amounts above. Will not be null when query param `with_value` is `true`.
        - `emission_rate` string, required
        - `extra` object, required
          - `text` object, nullable, required — Human-readable variants of USD values. Will not be null when query params `with_text` and `with_value` are `true`.
            - `emission_rate` string, required
  - `error` ErrorData, required
    - `scope` union, required
      - 'user'
      - 'client'
      - 'server'
    - `kind` union, required
      - 'invalid_request'
      - 'validation'
      - 'entity_not_found'
      - 'contract'
      - 'internal'
    - `message` string, required — Error message
    - `fields` FieldValidationError[], nullable, required — List of names and error messages for invalid fields. Never NULL when `error.kind == 'validation'`. Always NULL for all other cases.
      - `field` string, required
      - `message` string, required
  - `status` integer, required — Request status
  - `status_text` string, required — Request status text

## Changes

- **2026-03-01** `9048b9a34641` — 5 breaking, 22 info
  - added `subschema #1: Invalid request, subschema #2: Validation error, subschema #3: Requested entity not found, subschema #4: Contract error, subschema #5: Internal server error` to the `error/anyOf[#/components/schemas/ErrorData]/kind/allOf[#/components/schemas/ErrorKind]/` response property `oneOf` list for the response status `200`
  - added `subschema #1: User error, subschema #2: Client error, subschema #3: Server error` to the `error/anyOf[#/components/schemas/ErrorData]/scope/allOf[#/components/schemas/ErrorScope]/` response property `oneOf` list for the response status `200`
  - the `data/anyOf[#/components/schemas/NeptParams]/staking_pools/items/duration` response's property type/format changed from ``/`` to `integer`/`uint64` for status `200`
  - the `error/anyOf[#/components/schemas/ErrorData]/kind/allOf[#/components/schemas/ErrorKind]/` response's property type/format changed from `string`/`` to ``/`` for status `200`
  - …23 more

[Change history](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/changes/api/v1/nept/params/get.md)

---

[API](https://skmtc.dev/cryptechdev/apis/neptune-api-v2.md) · [All operations](https://skmtc.dev/cryptechdev/apis/neptune-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/cryptechdev/neptune-api-v2/revisions/8f59b54c563a/schema)
