Polkadot Multisig API

The Multisig API from Polkadot — 3 operation(s) for multisig.

Operations 3

POST /api/scan/multisig Get multisig extrinsic details
POST /api/scan/multisigs List multisig extrinsics
POST /api/scan/multisigs/details List multisig extrinsic details

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/polkadot-multisig-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

polkadot-multisig-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: bruce.sun@itering.io
    name: API Support
    url: http://www.swagger.io/support
  description: This is a subscan API server.
  license:
    name: Apache 2.0
    url: http://www.apache.org/licenses/LICENSE-2.0.html
  termsOfService: http://swagger.io/terms/
  title: Subscan Multisig API
  version: '1.0'
servers:
- url: https://https://www.subscan.io/
tags:
- name: Multisig
paths:
  /api/scan/multisig:
    post:
      description: Returns details for a multisig extrinsic by multi_id and call_hash.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/internal_server_http.J'
                - properties:
                    data:
                      $ref: '#/components/schemas/subscan_internal_model.MultisigExtrinsicJson'
                  type: object
      summary: Get multisig extrinsic details
      tags:
      - Multisig
      x-synonyms:
      - multisig
      - extrinsic
      - scan
      - multi-signature
      - multi sig
      - transaction
      - tx
      - on-chain call
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/internal_server_http.multisigParams'
        description: params
        required: true
  /api/scan/multisigs:
    post:
      description: Returns paginated multisig extrinsics filtered by account, call hash, and type.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/internal_server_http.J'
                - properties:
                    data:
                      properties:
                        count:
                          type: integer
                        multisig:
                          items:
                            $ref: '#/components/schemas/subscan_internal_model.MultisigExtrinsicJson'
                          type: array
                      type: object
                  type: object
      summary: List multisig extrinsics
      tags:
      - Multisig
      x-synonyms:
      - multisig
      - extrinsics
      - scan
      - multisigs
      - multi-signature
      - multi sig
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/internal_server_http.multisigParams'
        description: params
        required: true
  /api/scan/multisigs/details:
    post:
      description: Returns paginated multisig detail records for the specified account.
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                allOf:
                - $ref: '#/components/schemas/internal_server_http.J'
                - properties:
                    data:
                      properties:
                        count:
                          type: integer
                        multisig:
                          items:
                            $ref: '#/components/schemas/subscan_internal_model.MultisigExtrinsicDetailsJson'
                          type: array
                      type: object
                  type: object
      summary: List multisig extrinsic details
      tags:
      - Multisig
      x-synonyms:
      - multisig
      - extrinsic
      - scan
      - multisigs
      - multi-signature
      - multi sig
      - transaction
      - tx
      - on-chain call
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/internal_server_http.multisigsDetailsParams'
        description: params
        required: true
components:
  schemas:
    subscan_libs_substrate.MetadataModuleError:
      properties:
        doc:
          items:
            type: string
          type: array
        module:
          type: string
        name:
          type: string
        value:
          type: string
      type: object
    subscan_internal_model.ExtrinsicParam:
      properties:
        name:
          type: string
        type:
          type: string
        type_name:
          type: string
        value: {}
      type: object
    subscan_internal_model.SampleIdentity:
      properties:
        display:
          type: string
        identity:
          type: boolean
        judgements:
          items:
            $ref: '#/components/schemas/subscan_internal_model.RegistrationJudgementJson'
          type: array
        parent:
          $ref: '#/components/schemas/subscan_internal_model.AccountParentJson'
      type: object
    internal_server_http.multisigsDetailsParams:
      properties:
        account:
          example: 14RYaXRSqb9rPqMaAVp1UZW2czQ6dMNGMbvukwfifi6m8ZgZ
          type: string
        page:
          description: Page number, starting from 0
          example: 0
          minimum: 0
          type: integer
        row:
          description: Data size per page
          example: 10
          maximum: 100
          minimum: 1
          type: integer
        status:
          enum:
          - Approval
          - Executed
          - Cancelled
          - Failed
          type: string
      required:
      - account
      type: object
    subscan_internal_model.AccountParentJson:
      properties:
        address:
          type: string
        display:
          type: string
        identity:
          type: boolean
        sub_symbol:
          type: string
      type: object
    subscan_internal_model.EvmAccountDisplay:
      properties:
        contract_name:
          type: string
        verify_source:
          type: string
      type: object
    internal_server_http.multisigParams:
      properties:
        call_hash:
          example: 95989422012815483151816709596805504452218676110269919620971647505502472854755
          type: string
        multi_id:
          example: 14661803-2
          type: string
      required:
      - call_hash
      - multi_id
      type: object
    subscan_internal_model.ExtrinsicError:
      properties:
        batch_index:
          type: integer
        doc:
          type: string
        module:
          type: string
        name:
          type: string
        value:
          type: string
        version:
          type: integer
      type: object
    subscan_internal_model.MultisigExtrinsicJson:
      properties:
        account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        block_timestamp:
          type: integer
        call_data:
          type: string
        call_hash:
          type: string
        call_module:
          type: string
        call_module_function:
          type: string
        error:
          $ref: '#/components/schemas/subscan_internal_model.ExtrinsicError'
        multi_account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        multi_id:
          description: extrinsicIndex
          type: string
        params:
          items:
            $ref: '#/components/schemas/subscan_internal_model.ExtrinsicParam'
          type: array
        process:
          items:
            $ref: '#/components/schemas/subscan_internal_model.MultisigProcessJson'
          type: array
        status:
          $ref: '#/components/schemas/subscan_internal_model.MultiAction'
        sub_calls:
          items:
            $ref: '#/components/schemas/subscan_internal_model.ExtrinsicSubCallJson'
          type: array
        threshold:
          type: integer
      type: object
    subscan_internal_model.ExtrinsicSubCallJson:
      properties:
        account:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        exec_result:
          $ref: '#/components/schemas/subscan_libs_substrate.MetadataModuleError'
        exec_status:
          type: string
        module:
          type: string
        multisig:
          $ref: '#/components/schemas/subscan_internal_model.MultisigJson'
        name:
          type: string
        param: {}
        sub_calls:
          items:
            $ref: '#/components/schemas/subscan_internal_model.ExtrinsicSubCallJson'
          type: array
      type: object
    subscan_internal_model.MultisigExtrinsicDetailsJson:
      properties:
        account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        approve_record:
          items:
            $ref: '#/components/schemas/subscan_internal_model.MultisigProcessJson'
          type: array
        block_timestamp:
          type: integer
        call_data:
          type: string
        call_hash:
          type: string
        call_module:
          type: string
        call_module_function:
          type: string
        cancel_extrinsic_idx:
          type: string
        cancel_record:
          items:
            $ref: '#/components/schemas/subscan_internal_model.MultisigProcessJson'
          type: array
        confirm_extrinsic_idx:
          type: string
        error:
          $ref: '#/components/schemas/subscan_internal_model.ExtrinsicError'
        multi_account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        multi_id:
          description: extrinsicIndex
          type: string
        params:
          items:
            $ref: '#/components/schemas/subscan_internal_model.ExtrinsicParam'
          type: array
        process:
          items:
            $ref: '#/components/schemas/subscan_internal_model.MultisigProcessJson'
          type: array
        status:
          $ref: '#/components/schemas/subscan_internal_model.MultiAction'
        sub_calls:
          items:
            $ref: '#/components/schemas/subscan_internal_model.ExtrinsicSubCallJson'
          type: array
        threshold:
          type: integer
      type: object
    subscan_internal_model.AccountDisplay:
      properties:
        account_index:
          type: string
        address:
          description: Current network account
          type: string
        display:
          type: string
        evm_address:
          type: string
        evm_contract:
          $ref: '#/components/schemas/subscan_internal_model.EvmAccountDisplay'
        identity:
          type: boolean
        judgements:
          items:
            $ref: '#/components/schemas/subscan_internal_model.RegistrationJudgementJson'
          type: array
        merkle:
          $ref: '#/components/schemas/subscan_internal_model.MerkleTag'
        parent:
          allOf:
          - $ref: '#/components/schemas/subscan_internal_model.AccountParentJson'
          description: Parent account
        people:
          $ref: '#/components/schemas/subscan_internal_model.SampleIdentity'
      type: object
    subscan_internal_model.MerkleTag:
      properties:
        address_type:
          type: string
        tag_name:
          type: string
        tag_subtype:
          type: string
        tag_type:
          type: string
      type: object
    subscan_internal_model.MultisigJson:
      properties:
        call_hash:
          type: string
        call_module:
          type: string
        call_module_function:
          type: string
        error:
          $ref: '#/components/schemas/subscan_internal_model.ExtrinsicError'
        extrinsic_index:
          type: string
        multi_id:
          type: string
        multisig_account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        multisig_status:
          $ref: '#/components/schemas/subscan_internal_model.MultiAction'
        processing:
          type: integer
        threshold:
          type: integer
      type: object
    subscan_internal_model.MultisigProcessJson:
      properties:
        account_display:
          $ref: '#/components/schemas/subscan_internal_model.AccountDisplay'
        approve_type:
          type: string
        extrinsic_index:
          type: string
        status:
          $ref: '#/components/schemas/subscan_internal_model.MultiAction'
        timestamp:
          type: integer
      type: object
    subscan_internal_model.MultiAction:
      enum:
      - Approval
      - Executed
      - Cancelled
      - Failed
      type: string
      x-enum-varnames:
      - MultiActionApproval
      - MultiActionExecuted
      - MultiActionCancelled
      - MultiActionExecuteFailed
    subscan_internal_model.RegistrationJudgementJson:
      properties:
        index:
          type: integer
        judgement:
          type: string
      type: object
    internal_server_http.J:
      properties:
        code:
          example: 0
          type: integer
        data: {}
        generated_at:
          example: 1699600641
          type: integer
        message:
          example: Success
          type: string
      type: object