Blnk Finance Ledgers API

The Ledgers API from Blnk Finance — 2 operation(s) for ledgers.

Operations 2

POST /ledgers Create ledger #
GET /ledgers/{ledger_id} Get Ledger #

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/blnkfinance-ledgers-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

blnkfinance-ledgers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Blnk Ledgers API
  contact: {}
  version: '1.0'
servers:
- url: http://localhost:5001
  variables: {}
security: []
tags:
- name: Ledgers
paths:
  /ledgers:
    post:
      summary: Create ledger
      operationId: Createledger
      parameters: []
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              allOf:
              - $ref: '#/components/schemas/CreateledgerRequest'
              - example:
                  name: Customer wallets Ledger
                  meta_data:
                    project_owner: Blnk Tech
            example:
              name: Customer wallets Ledger
              meta_data:
                project_owner: Blnk Tech
        required: true
      responses:
        '201':
          description: Created
          headers:
            Date:
              content:
                text/plain:
                  schema:
                    type: string
                  example: Tue, 20 Feb 2024 05:28:03 GMT
            Content-Length:
              content:
                text/plain:
                  schema:
                    type: string
                  example: '128'
          content:
            application/json; charset=utf-8:
              schema:
                allOf:
                - $ref: '#/components/schemas/Createledger'
                - example:
                    ledger_id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
                    name: Customer wallets Ledger
                    created_at: '2024-02-20T05:28:03.558281542Z'
                    meta_data:
                      project_owner: Blnk Tech
              example:
                ledger_id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
                name: Customer wallets Ledger
                created_at: '2024-02-20T05:28:03.558281542Z'
                meta_data:
                  project_owner: Blnk Tech
      deprecated: false
      security:
      - basic: []
      tags:
      - Ledgers
  /ledgers/{ledger_id}:
    get:
      summary: Get Ledger
      operationId: GetLedger
      parameters:
      - name: ledger_id
        in: path
        description: Unique identification number for your ledger
        required: true
        style: simple
        schema:
          type: string
          example: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
      responses:
        '200':
          description: OK
          headers:
            Date:
              content:
                text/plain:
                  schema:
                    type: string
                  example: Tue, 20 Feb 2024 05:43:29 GMT
            Content-Length:
              content:
                text/plain:
                  schema:
                    type: string
                  example: '125'
          content:
            application/json; charset=utf-8:
              schema:
                allOf:
                - $ref: '#/components/schemas/Ledger'
                - example:
                    ledger_id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
                    name: Customer wallets Ledger
                    created_at: '2024-02-20T05:28:03.563132Z'
                    meta_data:
                      project_owner: Blnk Tech
              example:
                ledger_id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
                name: Customer wallets Ledger
                created_at: '2024-02-20T05:28:03.563132Z'
                meta_data:
                  project_owner: Blnk Tech
      deprecated: false
      tags:
      - Ledgers
components:
  schemas:
    Ledger:
      title: Ledger
      required:
      - ledger_id
      - name
      - created_at
      - meta_data
      type: object
      properties:
        ledger_id:
          type: string
        name:
          type: string
        created_at:
          type: string
        meta_data:
          $ref: '#/components/schemas/MetaData'
      example:
        ledger_id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
        name: Customer wallets Ledger
        created_at: '2024-02-20T05:28:03.563132Z'
        meta_data:
          project_owner: Blnk Tech
    CreateledgerRequest:
      title: CreateledgerRequest
      required:
      - name
      - meta_data
      type: object
      properties:
        name:
          type: string
        meta_data:
          $ref: '#/components/schemas/MetaData'
      example:
        name: Customer wallets Ledger
        meta_data:
          project_owner: Blnk Tech
    MetaData:
      title: MetaData
      required:
      - project_owner
      type: object
      properties:
        project_owner:
          type: string
      example:
        project_owner: Blnk Tech
    Createledger:
      title: Createledger
      required:
      - ledger_id
      - name
      - created_at
      - meta_data
      type: object
      properties:
        ledger_id:
          type: string
        name:
          type: string
        created_at:
          type: string
        meta_data:
          $ref: '#/components/schemas/MetaData'
      example:
        id: ldg_073f7ffe-9dfd-42ce-aa50-d1dca1788adc
        name: Customer wallets Ledger
        created_at: '2024-02-20T05:28:03.558281542Z'
        meta_data:
          project_owner: Blnk Tech
  securitySchemes:
    basic:
      type: http
      scheme: basic