PolySign ABC Testnet API

The ABC Testnet API from PolySign — 2 operation(s) for abc testnet.

Operations 2

PUT /v1/abc_testnet/ Create an account on ABC testnet.
GET /v1/abc_testnet/faucet/{abc_account_id} Faucet an account on ABC testnet.

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-testnet-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-testnet-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 Testnet API
  version: 5fddf272a23655e1582a8a157a8d0ac8e0d517e2
security:
- OAuth2:
  - participant
tags:
- name: ABC Testnet
paths:
  /v1/abc_testnet/:
    put:
      summary: Create an account on ABC testnet.
      tags:
      - ABC Testnet
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ABCCreateAccountRequest'
      responses:
        '200':
          description: The created account.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ABCCreateAccountResponse'
        '500':
          description: Account could not be created on the ABC
  /v1/abc_testnet/faucet/{abc_account_id}:
    get:
      summary: Faucet an account on ABC testnet.
      tags:
      - ABC Testnet
      parameters:
      - name: abc_account_id
        in: path
        description: Identifier of the ABC account.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Empty
components:
  schemas:
    ABCCreateAccountRequest:
      type: object
      properties:
        role:
          type: string
          description: Role of the account.
        atomicnet_id:
          type: string
          format: uuid
          description: Identifier of the AtomicNet Participant.
      required:
      - atomicnet_id
      - role
      description: ABC create testnet account request schema.
    ABCCreateAccountResponse:
      type: object
      properties:
        account_id:
          type: string
          description: Account id of the created abc account.
      required:
      - account_id
      description: ABC create testnet account response 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.