AVORA Agent Forge Public Evidence API

Public-data token evidence with mandatory human-review controls.

Operations 3

GET /api/gov/v1/health Check service and signing-key readiness #
GET /api/gov/v1/scan Create a signed public-data Solana token assessment #
GET /.well-known/jwks.json Get Ed25519 public verification keys #

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/avora-agent-forge-public-evidence-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

avora-agent-forge-public-evidence-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: AVORA Public AI Interoperability Public Evidence API
  version: 1.0.0
  description: Read-only, signed public-data Solana token assessments. This interface claims neither government approval nor NIST certification.
servers:
- url: https://avora-agent-forge.netlify.app
tags:
- name: Public Evidence
  description: Public-data token evidence with mandatory human-review controls.
paths:
  /api/gov/v1/health:
    get:
      operationId: getPublicAiServiceHealth
      summary: Check service and signing-key readiness
      tags:
      - Public Evidence
      responses:
        '200':
          description: Operational
        '503':
          description: Signing service degraded
  /api/gov/v1/scan:
    get:
      operationId: createSignedSolanaTokenAssessment
      summary: Create a signed public-data Solana token assessment
      description: Returns an assessment payload and detached-style JWS receipt. The response is informational only and requires human review.
      tags:
      - Public Evidence
      parameters:
      - name: mint
        in: query
        required: true
        description: Base58 SPL token mint address.
        schema:
          type: string
          pattern: ^[1-9A-HJ-NP-Za-km-z]{32,44}$
      - name: X-Request-Id
        in: header
        required: false
        description: Optional caller trace identifier.
        schema:
          type: string
          maxLength: 64
          pattern: ^[A-Za-z0-9._:-]+$
      responses:
        '200':
          description: Signed assessment
          headers:
            X-Request-Id:
              schema:
                type: string
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SignedAssessment'
        '400':
          description: Invalid mint or upstream evidence failure
        '503':
          description: Receipt signing unavailable
  /.well-known/jwks.json:
    get:
      operationId: getReceiptVerificationKeys
      summary: Get Ed25519 public verification keys
      tags:
      - Public Evidence
      responses:
        '200':
          description: JSON Web Key Set
          content:
            application/jwk-set+json:
              schema:
                type: object
                required:
                - keys
                properties:
                  keys:
                    type: array
                    items:
                      type: object
components:
  schemas:
    SignedAssessment:
      type: object
      required:
      - payload
      - receipt
      properties:
        payload:
          type: object
          required:
          - schemaVersion
          - requestId
          - issuedAt
          - dataGovernance
          - subject
          - assessment
          - provenance
          - limitations
        receipt:
          type: object
          required:
          - format
          - algorithm
          - keyId
          - protected
          - signature
          - payloadSha256
          - publicKeyUrl
          properties:
            format:
              const: JWS
            algorithm:
              const: EdDSA
            keyId:
              type: string
            protected:
              type: string
            signature:
              type: string
            payloadSha256:
              type: string
            publicKeyUrl:
              type: string
              format: uri