PolySign Investor API

The investor API from PolySign — 2 operation(s) for investor.

Operations 2

GET /v1/investors/real_investor_id/{real_investor_id} Generate a one time investor ID for the real investor ID.
GET /v1/investors/one_time_investor_id/{one_time_investor_id} Get the detail of an investor involved by this node by its one time investor id.

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-investor-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-investor-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 Investor API
  version: 5ba508e7771507febd8e2056c369fffd575b4272
security:
- OAuth2:
  - participant
tags:
- name: investor
paths:
  /v1/investors/real_investor_id/{real_investor_id}:
    get:
      summary: Generate a one time investor ID for the real investor ID.
      tags:
      - investor
      parameters:
      - name: real_investor_id
        in: path
        description: The real investor ID of the investor.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The mapping of the investor ID.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OnetimeIdMap6'
  /v1/investors/one_time_investor_id/{one_time_investor_id}:
    get:
      summary: 'Get the detail of an investor involved by this node by its one time investor id.

        '
      tags:
      - investor
      parameters:
      - name: one_time_investor_id
        in: path
        description: The one time identifier of the investor.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: The investor.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Investor'
components:
  schemas:
    OnetimeIdMap6:
      type: object
      properties:
        one_time_id:
          type: string
          description: The one time ID.
        real_id:
          type: string
          description: The real ID.
      required:
      - one_time_id
      - real_id
      description: ID mapping.
    Investor:
      type: object
      properties:
        real_investor_id:
          type: string
          description: The real identifier of the investor.
        one_time_investor_ids:
          type: array
          description: The list of one time identifier of the investor.
          items:
            type: string
        schema_version:
          type: integer
          default: 1
          description: Version for the message schema.
      required:
      - one_time_investor_ids
      - real_investor_id
      description: Investor 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.