Kamino Lend Deposit API

The Kamino Lend Deposit API from Kamino — 2 operation(s) for kamino lend deposit.

Operations 2

POST /ktx/klend/deposit Get transaction to deposit into a klend reserve #
POST /ktx/klend/deposit-instructions Get instructions to deposit into a klend reserve #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/kamino-kamino-lend-deposit-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

kamino-kamino-lend-deposit-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Kamino Transactions Kamino Lend Deposit API
  version: 1.0.0
servers:
- url: https://api.kamino.finance
tags:
- name: Kamino Lend Deposit
paths:
  /ktx/klend/deposit:
    post:
      summary: Get transaction to deposit into a klend reserve
      tags:
      - Kamino Lend Deposit
      description: Deposit tokens into the specified Kamino Lend market reserve
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                wallet:
                  description: User wallet address (base58) that will also sign the transaction
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: KUMtRazMP7vwvc2kthnGZ9Cq6ZsGRiYC97snMYepNx9
                market:
                  description: Target Kamino Lend market address
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: 7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF
                reserve:
                  description: Target Kamino Lend Reserve address. The reserve must belong to the specified market
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: D6q6wuQSrifJKZYpR1M8R4YawnLDtDsMmWM1NbBmgJ59
                amount:
                  description: Amount of liquidity token to deposit (in decimal format, not lamports)
                  format: decimal-positive-amount
                  type: string
                  example: '0.1234'
              required:
              - wallet
              - market
              - reserve
              - amount
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  transaction:
                    description: Encoded transaction ready to send
                    type: string
                    example: AQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAQAEB4U90z775Z0G20Lzbx64AwbcGsJTUS+D6M2d1yQDvRL+MXyh2DY6ZPXvcFUmkblzqU7UrFcH4BAOPAPQXUWHKZS66KvlDTwMypF/H+icat/xVYNA0OvZ+RMaheXL0QJajAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD9ps6fZhmN2HDYqYbzBnXEb4Pi9Sg0h5UvXVBWPj73qMlyWPTiSJ8bs9ECkUjg2DC1oTmdr/EIQEjnvY2+n4WQTZCvHbiTnsNf+U2WQNV9zDJ5S7Phu2b9OuhJqE3NuUsuvLnkdJfjUAGox8/57aeYKvmQtCaruy3qoGNzwovloCBQYAAQAHAxEBAQYRAAsIDw0HAgEQEREEBgoJDgwQ8iPGiVLh8rYA4fUFAAAAAAGC6dRmw0Z9LrKw2cy+tHvb9JXuHBu0d9Dar60DX6fr5AUFLxMJAQYVBAsCBwM=
                required:
                - transaction
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    description: HTTP error code
                    type: number
                    example: 400
                  message:
                    description: Error message describing the issue
                    type: string
                  error:
                    description: Short description of the http status code
                    type: string
                    example: Bad Request
                  code:
                    description: Kamino error code
                    anyOf:
                    - type: string
                      enum:
                      - DECIMAL_TO_LAMPORTS_OVERFLOW
                    - type: string
                      enum:
                      - KLEND_MARKET_NOT_FOUND
                    - type: string
                      enum:
                      - KLEND_OBLIGATION_NOT_FOUND
                    - type: string
                      enum:
                      - KLEND_RESERVE_NOT_FOUND
                    - type: string
                      enum:
                      - KVAULT_NOT_FOUND
                    - type: string
                      enum:
                      - TRANSACTION_SIZE_ERROR
                required:
                - statusCode
                - message
                - error
      operationId: postKtxKlendDeposit
      x-operation-id-source: derived
  /ktx/klend/deposit-instructions:
    post:
      summary: Get instructions to deposit into a klend reserve
      tags:
      - Kamino Lend Deposit
      description: Instructions to deposit tokens into the specified Kamino Lend market reserve. Additionally includes lookup tables to use to compress transaction size
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                wallet:
                  description: User wallet address (base58) that will also sign the transaction
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: KUMtRazMP7vwvc2kthnGZ9Cq6ZsGRiYC97snMYepNx9
                market:
                  description: Target Kamino Lend market address
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: 7u3HeHxYDLhnCoErrtycNokbQYbWGzLs6JSDqGAv5PfF
                reserve:
                  description: Target Kamino Lend Reserve address. The reserve must belong to the specified market
                  format: solana-base58-address
                  minLength: 32
                  maxLength: 44
                  type: string
                  example: D6q6wuQSrifJKZYpR1M8R4YawnLDtDsMmWM1NbBmgJ59
                amount:
                  description: Amount of liquidity token to deposit (in decimal format, not lamports)
                  format: decimal-positive-amount
                  type: string
                  example: '0.1234'
              required:
              - wallet
              - market
              - reserve
              - amount
        required: true
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  instructions:
                    type: array
                    items:
                      type: object
                      properties:
                        accounts:
                          type: array
                          items:
                            type: object
                            properties:
                              address:
                                type: string
                              role:
                                type: string
                              signer:
                                type: object
                                properties:
                                  address:
                                    type: string
                                required:
                                - address
                            required:
                            - address
                            - role
                            example:
                              address: 9y7uLMUMW6EiRwH1aJFSp9Zka7dVx2JdZKA3858u6YHT
                              role: WRITABLE_SIGNER
                              signer:
                                address: 9y7uLMUMW6EiRwH1aJFSp9Zka7dVx2JdZKA3858u6YHT
                        data:
                          anyOf:
                          - type: string
                          - type: 'null'
                          example: 8iPGiVLh8rYA4fUFAAAAAA==
                        programAddress:
                          type: string
                          example: KvauGMspG5k6rtzrqqn7WNn3oZdyKqLKwK2XWQ8FLjd
                      required:
                      - accounts
                      - data
                      - programAddress
                  lutsByAddress:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        description: Referenced LUT address
                        type: string
                    example:
                      9p2oT9J6BojHigd3V5qXzrwsQf4dtgMgLxtrzLVR3rwu:
                      - sadmBTQm5HJsyzWHEjV4YwG9CiahZKVDVqAyS4Wx1zH
                      - HDsayqAsDWy3QvANGqh2yNraqcD8Fnjgh73Mhb3WRS5E
                      - EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
                required:
                - instructions
                - lutsByAddress
        '400':
          description: Default Response
          content:
            application/json:
              schema:
                type: object
                properties:
                  statusCode:
                    description: HTTP error code
                    type: number
                    example: 400
                  message:
                    description: Error message describing the issue
                    type: string
                  error:
                    description: Short description of the http status code
                    type: string
                    example: Bad Request
                  code:
                    description: Kamino error code
                    anyOf:
                    - type: string
                      enum:
                      - DECIMAL_TO_LAMPORTS_OVERFLOW
                    - type: string
                      enum:
                      - KLEND_MARKET_NOT_FOUND
                    - type: string
                      enum:
                      - KLEND_OBLIGATION_NOT_FOUND
                    - type: string
                      enum:
                      - KLEND_RESERVE_NOT_FOUND
                    - type: string
                      enum:
                      - KVAULT_NOT_FOUND
                    - type: string
                      enum:
                      - TRANSACTION_SIZE_ERROR
                required:
                - statusCode
                - message
                - error
      operationId: postKtxKlendDepositInstructions
      x-operation-id-source: derived