PolySign ABC Signing API

The ABC Signing API from PolySign — 1 operation(s) for abc signing.

Operations 2

PUT /v1/abc_signing/ Sign a digest using ABC account for the given AtomicNet id.
GET /v1/abc_signing/ Verify the signature.

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/polysign-abc-signing-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

polysign-abc-signing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This document lists all AtomicNet ABC Proxy Service APIs for development use.
  license:
    name: PolySign License
    url: https://polysign.io/licenses/LICENSE-1.0
  title: AtomicNet ABC Proxy Service ABC Signing API
  version: 5fddf272a23655e1582a8a157a8d0ac8e0d517e2
security:
- OAuth2:
  - participant
tags:
- name: ABC Signing
paths:
  /v1/abc_signing/:
    put:
      summary: Sign a digest using ABC account for the given AtomicNet id.
      tags:
      - ABC Signing
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AbcSigningRequest'
      responses:
        '200':
          description: The signature for the request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AbcSignature1'
    get:
      summary: Verify the signature.
      tags:
      - ABC Signing
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ABCVerifySignatureRequest'
      responses:
        '200':
          description: Empty
components:
  schemas:
    AbcSignature:
      type: object
      properties:
        schema_version:
          type:
          - integer
          - 'null'
          default: 1
          description: Version for the message schema.
        digest_type:
          type: string
          description: The ABC digest type.
        signature:
          type: string
          description: Signature of the digest.
        digest:
          type: string
          description: The digest to be signed.
        abc_account_id:
          type: string
          description: Identifier of the ABC account.
      required:
      - abc_account_id
      - digest
      - digest_type
      - signature
    AbcSigningRequest:
      type: object
      properties:
        digest:
          type: string
          description: The data digest to be signed.
        atomicnet_id:
          type: string
          format: uuid
          description: Identifier of the AtomicNet node.
      required:
      - atomicnet_id
      - digest
      description: ABC digest signing request object.
    AbcSignature1:
      type: object
      properties:
        schema_version:
          type:
          - integer
          - 'null'
          default: 1
          description: Version for the message schema.
        digest_type:
          type: string
          description: The ABC digest type.
        signature:
          type: string
          description: Signature of the digest.
        digest:
          type: string
          description: The digest to be signed.
        abc_account_id:
          type: string
          description: Identifier of the ABC account.
      required:
      - abc_account_id
      - digest
      - digest_type
      - signature
    ABCVerifySignatureRequest:
      type: object
      properties:
        digest:
          type: string
          description: The expected data digest that was signed.
        signature:
          description: Signature for the associated digest.
          allOf:
          - $ref: '#/components/schemas/AbcSignature'
        atomicnet_id:
          type:
          - string
          - 'null'
          format: uuid
          default: null
          description: Identifier of the AtomicNet Participant. If specified, will be checked to belong to the ABC account id.
      required:
      - digest
      - signature
      description: Dataclass for ABC verify signature request schema.
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth 2.0 with the client credentials grant flow.
      flows:
        clientCredentials:
          tokenUrl: /v1/auth/token
          scopes:
            participant: Grants access to participant.