Lokki Stripe Connect API

The Stripe Connect API from Lokki — 5 operation(s) for stripe connect.

Operations 5

POST /v2/stripe-connect/create-account-express #
GET /v2/stripe-connect/check-account-status/{type} #
GET /v2/stripe-connect/disconnect-account/{type} #
PUT /v2/stripe-connect/update-account-payment-methods #

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/lokki-stripe-connect-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

lokki-stripe-connect-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Lokki Stripe Connect API
  description: The main API powering the Lokki Dashboard and Online Store
  version: '2.0'
  contact: {}
servers: []
security:
- x-access-token: []
tags:
- name: Stripe Connect
paths:
  /v2/stripe-connect/create-account-express:
    post:
      operationId: createAccountExpress
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/StripeCreateAccountDto'
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeAccountUrlDto'
        '400':
          description: Stripe rejected the account creation (invalid data or provider failure)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeConnectErrorDto'
        '409':
          description: The company already has an active express account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeConnectErrorDto'
      tags:
      - Stripe Connect
  /v2/stripe-connect/login-link/{type}:
    get:
      operationId: getLoginStripeLink
      parameters:
      - name: type
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/StripeAccountUrlDto'
      tags:
      - Stripe Connect
  /v2/stripe-connect/check-account-status/{type}:
    get:
      operationId: checkStripeAccountStatus
      parameters:
      - name: type
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
          content:
            application/json:
              schema:
                type: boolean
      tags:
      - Stripe Connect
  /v2/stripe-connect/disconnect-account/{type}:
    get:
      operationId: disconnectStripeAccount
      parameters:
      - name: type
        required: true
        in: path
        schema:
          type: string
      responses:
        '200':
          description: ''
      tags:
      - Stripe Connect
  /v2/stripe-connect/update-account-payment-methods:
    put:
      operationId: updateCompanyOnlineStorePaymentMethods
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/LokkiPaymentMethods'
      responses:
        '200':
          description: ''
      tags:
      - Stripe Connect
components:
  schemas:
    StripeConnectErrorCode:
      type: string
      enum:
      - STRIPE_ACCOUNT_ALREADY_ACTIVE
      - STRIPE_INVALID_PHONE_NUMBER
      - STRIPE_INVALID_EMAIL
      - STRIPE_UNSUPPORTED_COUNTRY
      - STRIPE_INVALID_ACCOUNT_DATA
      - STRIPE_ACCOUNT_CREATION_FAILED
    StripeCreateAccountDto:
      type: object
      properties:
        country:
          type: string
        type:
          type: string
          enum:
          - ALL
          - EVENT
      required:
      - country
      - type
    StripeAccountUrlDto:
      type: object
      properties:
        url:
          type: string
      required:
      - url
    StripeConnectErrorDto:
      type: object
      properties:
        error:
          $ref: '#/components/schemas/StripeConnectErrorCode'
        message:
          type: string
      required:
      - error
      - message
    LokkiPaymentMethods:
      type: object
      properties:
        card:
          type: boolean
        applePay:
          type: boolean
        googlePay:
          type: boolean
        ancvConnect:
          type: boolean
        sepa:
          type: boolean
        ideal:
          type: boolean
        bancontact:
          type: boolean
        giroPay:
          type: boolean
        p24:
          type: boolean
        blik:
          type: boolean
        multibanco:
          type: boolean
        eps:
          type: boolean
      required:
      - card
      - applePay
      - googlePay
      - ancvConnect
      - sepa
      - ideal
      - bancontact
      - giroPay
      - p24
      - blik
      - multibanco
      - eps
  securitySchemes:
    x-access-token:
      scheme: bearer
      bearerFormat: JWT
      type: apiKey
      in: header
      name: x-access-token