Crossmint Signers API

The Signers API from Crossmint — 2 operation(s) for signers.

Operations 3

POST /wallets/{walletLocator}/delegated-signers Create delegated signer #
GET /wallets/{walletLocator}/delegated-signers/{signerId} Get delegated signer #
DELETE /wallets/{walletLocator}/delegated-signers/{signerId} Remove delegated signer #

Specifications

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/crossmint-signers-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

crossmint-signers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Crossmint Wallets Balances Signers API
  description: 'Crossmint REST API for creating and managing server-side custodial and

    non-custodial smart wallets across EVM and Solana. Covers wallet creation,

    balances, transactions, transfers, signatures, delegated signers, and

    NFT enumeration. Endpoint inventory drawn from https://docs.crossmint.com.

    '
  version: '2025-06-09'
  contact:
    name: Crossmint Developers
    url: https://docs.crossmint.com
servers:
- url: https://www.crossmint.com/api/2025-06-09
  description: Production
- url: https://staging.crossmint.com/api/2025-06-09
  description: Staging
security:
- ApiKeyAuth: []
tags:
- name: Signers
paths:
  /wallets/{walletLocator}/delegated-signers:
    post:
      summary: Create delegated signer
      operationId: createDelegatedSigner
      tags:
      - Signers
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
      responses:
        '200':
          description: Signer
  /wallets/{walletLocator}/delegated-signers/{signerId}:
    get:
      summary: Get delegated signer
      operationId: getDelegatedSigner
      tags:
      - Signers
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      - in: path
        name: signerId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Signer
    delete:
      summary: Remove delegated signer
      operationId: deleteDelegatedSigner
      tags:
      - Signers
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      - in: path
        name: signerId
        required: true
        schema:
          type: string
      responses:
        '204':
          description: Deleted
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY