Interswitch Payment Links API

Hosted payment link generation

Operations 1

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/interswitch-payment-links-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

interswitch-payment-links-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Interswitch Payment Gateway Payment Links API
  description: 'Server-to-server card payment APIs for PCI-DSS-licensed merchants — direct

    Card Payments, Hosted Fields tokenization, 3D Secure step-up, Google Pay,

    and Pay Bill payment-link generation. Authenticated with OAuth 2.0

    client_credentials via the Passport token service.

    '
  version: '2024-01-01'
servers:
- url: https://qa.interswitchng.com
  description: Sandbox / QA
- url: https://saturn.interswitchng.com
  description: Production
security:
- BearerAuth: []
tags:
- name: Payment Links
  description: Hosted payment link generation
paths:
  /paymentgateway/api/v1/payment-links:
    post:
      tags:
      - Payment Links
      summary: Create Payment Link
      description: Create a hosted Pay Bill payment link the merchant can email, SMS, or share.
      operationId: createPaymentLink
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - amount
              - currency
              - description
              properties:
                amount:
                  type: integer
                currency:
                  type: string
                description:
                  type: string
                customerEmail:
                  type: string
                  format: email
                expiresAt:
                  type: string
                  format: date-time
      responses:
        '201':
          description: Created.
          content:
            application/json:
              schema:
                type: object
                properties:
                  paymentLinkId:
                    type: string
                  url:
                    type: string
                    format: uri
                  status:
                    type: string
components:
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      description: Bearer token from `POST {passport}/passport/oauth/token?grant_type=client_credentials`.