PolySign Partner API

The partner API from PolySign — 3 operation(s) for partner.

Operations 4

GET /v1/partners/{atomicnet_id} Get the detail of a partner registered on this node by its id.
GET /v1/partners/list Get the detail of all partners registered on this node.
PUT /v1/partners/list Register a list of new partners to this node.
PUT /v1/partners/ Register a new partner to this node.

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-partner-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-partner-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: The API Server as the interface to interact with AtomicNet
  license:
    name: PolySign License
    url: https://polysign.io/licenses/LICENSE-1.0
  title: AtomicNet API Server Partner API
  version: 5ba508e7771507febd8e2056c369fffd575b4272
security:
- OAuth2:
  - participant
tags:
- name: partner
paths:
  /v1/partners/{atomicnet_id}:
    get:
      summary: Get the detail of a partner registered on this node by its id.
      tags:
      - partner
      parameters:
      - name: atomicnet_id
        in: path
        description: The identifier of the partner.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The partner.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Partner'
  /v1/partners/list:
    get:
      summary: Get the detail of all partners registered on this node.
      tags:
      - partner
      responses:
        '200':
          description: The partners.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerList'
    put:
      summary: Register a list of new partners to this node.
      tags:
      - partner
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PartnerList'
      responses:
        '200':
          description: Empty
  /v1/partners/:
    put:
      summary: Register a new partner to this node.
      tags:
      - partner
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/Partner'
      responses:
        '200':
          description: Empty
components:
  schemas:
    Partner:
      type: object
      properties:
        role:
          type:
          - string
          - 'null'
          default: null
          description: Partner ABC account role.
        private_key:
          type:
          - string
          - 'null'
          default: null
          description: Partner ABC account private key.
        public_key:
          type:
          - string
          - 'null'
          default: null
          description: Partner ABC account piblic key.
        status:
          type:
          - string
          - 'null'
          default: null
          description: Partner status.
        abc_account_id:
          type:
          - string
          - 'null'
          default: null
          description: Partner ABC account ID.
        atomicnet_id:
          type: string
          format: uuid
          description: Identifier of the partner.
        partner_name:
          type:
          - string
          - 'null'
          default: null
          description: Partner name.
        schema_version:
          type: integer
          default: 1
          description: Version for the message schema.
      required:
      - atomicnet_id
      description: Partner object.
    PartnerList:
      type: object
      properties:
        partners:
          type: array
          description: The list of partners.
          items:
            $ref: '#/components/schemas/Partner'
      required:
      - partners
      description: List of partner registration object.
  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.