Blink Ledger Systems OAuth Applications API

Registration and retrieval of OAuth application credentials.

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/blink-ledger-systems-oauth-applications-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

blink-ledger-systems-oauth-applications-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Blink Server-Side Authentication OAuth Applications API
  version: '1.0'
  description: Server-side web APIs a publisher integrates on the back end of their web application to support "Login with Blink" and OAuth2. Transcribed faithfully from the published Blink documentation at https://docs.blink.net/docs/server-side-api/api-overview.html — Blink does not publish a machine-readable specification of its own. Paths, methods, request bodies, response shapes and error codes are exactly as documented; nothing has been invented. Field descriptions that the docs leave implicit are omitted rather than guessed.
  contact:
    name: Blink Integration
    email: integration@blink.net
    url: https://docs.blink.net/
  x-provenance:
    generated: '2026-07-20'
    method: generated
    source: https://docs.blink.net/docs/server-side-api/api-overview.html
servers:
- url: https://api.blink.net
  description: Production
- url: https://api.test.blink.net
  description: Test
tags:
- name: OAuth Applications
  description: Registration and retrieval of OAuth application credentials.
paths:
  /oauth/applications/register/:
    post:
      operationId: registerOAuthApplication
      tags:
      - OAuth Applications
      summary: Register an OAuth application
      description: Registers a new OAuth application to your client account.
      security:
      - loginToken: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/RegisterApplicationRequest'
      responses:
        '200':
          description: The registered OAuth application config.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OAuthApplicationConfig'
        default:
          description: Error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
  /oauth/applications/:
    get:
      operationId: getOAuthApplications
      tags:
      - OAuth Applications
      summary: List OAuth applications
      description: Retrieves the list of all the OAuth applications registered to your client account.
      security:
      - loginToken: []
      responses:
        '200':
          description: An array of OAuth application configs.
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/OAuthApplicationConfig'
components:
  schemas:
    RegisterApplicationRequest:
      type: object
      required:
      - name
      - redirectUris
      properties:
        name:
          type: string
          description: Your OAuth application name.
        redirectUris:
          type: string
          description: A space separated string list of all your OAuth redirect URIs.
    Error:
      type: object
      properties:
        code:
          type: integer
          description: Error code.
        message:
          type: string
          description: Error message.
    OAuthApplicationConfig:
      type: object
      properties:
        clientId:
          type: string
          description: OAuth client id.
        clientSecret:
          type: string
          description: OAuth client secret.
        redirectUris:
          type: string
          description: A space separated string list of all your OAuth redirect URIs.
  securitySchemes:
    loginToken:
      type: http
      scheme: bearer
      description: 'Bearer token obtained from POST /users/login/. Sent as `Authorization: Bearer <AUTH_TOKEN>`.'