BCB Group BLINC API

The BLINC API from BCB Group — 2 operation(s) for blinc.

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/bcb-group-blinc-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 email required.

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

OpenAPI Specification

bcb-group-blinc-api-openapi.yml Raw ↑
openapi: 3.0.0
info:
  title: BCB Group Payments Accounts BLINC API
  description: This is the api documentation for the BCB Group Payments API
  version: 1.0.0
  contact: {}
servers:
- url: https://api.bcb.group
  description: Production
- url: https://api.uat.bcb.group
  description: Sandbox
tags:
- name: BLINC
paths:
  /v3/accounts/{accountId}/blinc-beneficiaries:
    get:
      summary: BLINC Beneficiaries
      description: Returns an array of BLINC accounts of all BLINC members to which you are currently connected to
      operationId: Accounts_BlincBeneficiariesV3
      responses:
        '200':
          description: Success
          content:
            application/json:
              examples:
                Success:
                  summary: Success
                  value:
                  - id: 9996
                    blinc_id: '800999999999'
                    ccy: GBP
                    name: BLINC Member
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BlincBeneficiary'
        '401':
          description: Unauthorized
          content:
            text/html:
              schema:
                type: string
                example: Invalid token
        '403':
          description: Forbidden
          content:
            text/html:
              schema:
                type: string
                example: Forbidden
        '404':
          description: Not Found
          content:
            text/html:
              schema:
                type: string
                example: Not Found
        '500':
          description: Internal Server Error
          content:
            text/html:
              schema:
                type: string
                example: Internal Server Error
      parameters:
      - name: accountId
        in: path
        required: true
        description: The account id
        schema:
          example: 123
          type: integer
          default: ''
      - name: ccy
        in: query
        required: false
        description: 'List only those BLINC accounts with a matching currency (like: EUR, GBP, CHF).'
        schema:
          type: string
          default: ISO 4217 format
      tags:
      - BLINC
      security:
      - bearer: []
  /v3/accounts/blinc-accounts/{blincId}:
    get:
      summary: BLINC Detail
      description: Returns a single BLINC account based on the BLINC member BLINC id
      operationId: Accounts_BlincAccountV3
      responses:
        '200':
          description: Success
          content:
            application/json:
              examples:
                Success:
                  summary: Success
                  value:
                  - id: 9996
                    blinc_id: '800999999999'
                    ccy: GBP
                    name: BLINC Member
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/BlincBeneficiary'
        '401':
          description: Unauthorized
          content:
            text/html:
              schema:
                type: string
                example: Invalid token
        '403':
          description: Forbidden
          content:
            text/html:
              schema:
                type: string
                example: Forbidden
        '404':
          description: Not Found
          content:
            text/html:
              schema:
                type: string
                example: Not Found
        '500':
          description: Internal Server Error
          content:
            text/html:
              schema:
                type: string
                example: Internal Server Error
      parameters:
      - in: path
        name: blincId
        schema:
          type: string
          default: '800999999999'
        required: true
        description: '

          BLINC ID of another BLINC member'
      tags:
      - BLINC
      security:
      - bearer: []
components:
  schemas:
    BlincBeneficiary:
      type: object
      properties:
        id:
          type: number
          default: '9996'
        blinc_id:
          type: string
          default: '800999999999'
        ccy:
          type: string
          default: GBP
        name:
          type: string
          default: BLINC Memeber
      required:
      - id
      - name
      - ccy
      - blinc_id