Crossmint Signatures API

The Signatures API from Crossmint — 3 operation(s) for signatures.

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-signatures-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

crossmint-signatures-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Crossmint Wallets Balances Signatures 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: Signatures
paths:
  /wallets/{walletLocator}/signatures:
    get:
      summary: List signatures
      operationId: listSignatures
      tags:
      - Signatures
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Signatures
    post:
      summary: Create signature
      operationId: createSignature
      tags:
      - Signatures
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                params:
                  type: object
      responses:
        '200':
          description: Signature
  /wallets/{walletLocator}/signatures/{signatureId}:
    get:
      summary: Get signature
      operationId: getSignature
      tags:
      - Signatures
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      - in: path
        name: signatureId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Signature
  /wallets/{walletLocator}/signatures/{signatureId}/approve:
    post:
      summary: Approve signature
      operationId: approveSignature
      tags:
      - Signatures
      parameters:
      - in: path
        name: walletLocator
        required: true
        schema:
          type: string
      - in: path
        name: signatureId
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Approved
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY