> ## 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.

# Slippage Curve

> Get the slippage curve for different withdrawal amounts



## OpenAPI

````yaml open-apis/0d.json get /vaults/{vault_id}/liquidity/curve
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}/liquidity/curve:
    get:
      tags:
        - Vaults
      operationId: get_vault_slippage_curve
      parameters:
        - name: vault_id
          in: path
          description: Vault identifier
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Vault slippage curve
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SlippageCurveDTO'
        '404':
          description: Vault not found
        '500':
          description: Internal server error
components:
  schemas:
    SlippageCurveDTO:
      type: object
      required:
        - is_liquid
        - points
      properties:
        is_liquid:
          type: boolean
        points:
          type: array
          items:
            $ref: '#/components/schemas/SlippagePointDTO'
    SlippagePointDTO:
      type: object
      required:
        - amount_usd
        - slippage_bps
      properties:
        amount_usd:
          type: string
        slippage_bps:
          type: integer
          format: int32
          minimum: 0

````