Slope User Links API

The User Links API from Slope — 2 operation(s) for user links.

Operations 2

POST /v4/user-links/{linkToken}/access-token Generate an access token #
POST /v4/user-links/{linkToken}/iframe-url Generate an iframe URL for a user with link token #

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/slope-user-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

slope-user-links-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Slope v4 Auth User Links API
  description: 'Slope v4 API - embedded credit and B2B buy-now-pay-later (BNPL) infrastructure: customers, orders/checkout, adjustments (refunds), repayments, payout accounts, prescreens, transactions, and sandbox simulation.'
  version: 1.0.0
  contact:
    name: Slope Developer Support
    url: https://developers.slopepay.com/
    email: support@slopepay.com
servers:
- url: https://api.slopepay.com
  description: production
- url: https://api.sandbox.slopepay.com
  description: sandbox
tags:
- name: User Links
paths:
  /v4/user-links/{linkToken}/access-token:
    post:
      description: Given a `linkToken`, generate a short-lived access token used to embed an authenticated user your application.
      parameters:
      - name: linkToken
        required: true
        in: path
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAccessTokenV4ResponseDto'
      security:
      - apiKey: []
      summary: Generate an access token
      tags:
      - User Links
      operationId: createUserLinkAccessToken
  /v4/user-links/{linkToken}/iframe-url:
    post:
      description: Generate a URL that can be used to embed logged in user data in an iframe.
      parameters:
      - name: linkToken
        required: true
        in: path
        schema:
          type: string
      - name: page
        required: true
        in: query
        schema:
          type: string
      responses:
        '201':
          description: ''
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserIframeUrlV4ResponseDto'
      security:
      - apiKey: []
      summary: Generate an iframe URL for a user with link token
      tags:
      - User Links
      operationId: createUserLinkIframeUrl
components:
  schemas:
    UserAccessTokenV4ResponseDto:
      type: object
      properties:
        accessToken:
          type: string
          description: The access token used to perform API calls on behalf of the user
        expiresAt:
          format: date-time
          type: string
          description: The expiration date of the access token
        userId:
          type: string
          description: The user ID of the authenticated user
        userEmail:
          type: string
          description: The user email of the authenticated user
        customerId:
          type: string
          description: The customer ID of the authenticated user
        merchantId:
          type: string
          description: The merchant ID of the authenticated user
      required:
      - accessToken
      - expiresAt
      - userId
      - userEmail
      - customerId
      - merchantId
    UserIframeUrlV4ResponseDto:
      type: object
      properties:
        iframeUrl:
          type: string
          description: The iframe URL used to embed an authenticated user in your application
      required:
      - iframeUrl
  securitySchemes:
    apiKey:
      type: http
      scheme: basic
      description: Basic HTTP authentication using the base64 hash of `public_key:secret_key`.
externalDocs:
  description: Slope Developer Hub
  url: https://developers.slopepay.com/