SYNAPSEK
Paragon Core beta docs

Build with proof before agent action.

Synapsek Labs builds the Paragon product family. These docs start with Paragon Core and Task API because they power the agents, DEX handoff surfaces, templates, and future protocol rails. The API can research, score, preview, and monitor. It cannot custody funds, sign transactions, or override Guardian.

POST /api/paragon/tasks/route-checkpreview only
{
  "prompt": "use 100 USDT to buy XPGN",
  "chainId": 56,
  "executionMode": "preview_only"
}
returnscore envelope + Guardian scope + missing proof
01 Quickstart

Call a task. Read the proof. Respect the handoff scope.

Use the protected Task API from a server process. Do not expose admin or read API keys in a browser. Public adapters can expose limited safe tasks, but premium route, wallet, and Guardian work should remain authenticated.

const res = await fetch(
  "https://api.paragonchain.org/api/paragon/tasks/route-check",
  {
    method: "POST",
    headers: {
      "Content-Type": "application/json",
      "X-API-KEY": process.env.PARAGON_READ_API_KEY
    },
    body: JSON.stringify({
      prompt: "use 100 USDT to buy XPGN",
      chainId: 56,
      executionMode: "preview_only"
    })
  }
);

const result = await res.json();
console.log(result.core.schema);
console.log(result.guardianAction);
console.log(result.handoffScope);
02 Task API

Tasks other products can use.

Every successful task should expose Core proof, service proof, access proof, a verdict, evidence, missing proof, and the Guardian handoff boundary.

POST

/tasks/market-scan

Market regime, trend basket, source-quality labels, and missing data disclosure.

POST

/tasks/strategy-analysis

BTC, ETH, and major-asset research with levels, scenarios, and no execution authority.

POST

/tasks/token-scan

Exact EVM contract or Solana mint intelligence with provider proof and forensic gaps.

POST

/tasks/route-check

Preview-only route readiness, spend-token preservation, pool proof, and Guardian scope.

POST

/tasks/wallet-readiness

Chain, gas, balance, allowance, spender, and high-allowance review gates.

POST

/tasks/guardian-score

Deterministic policy decision for research, preview, wallet review, or blocked handoff.

POST

/tasks/dca-plan

Staged plan using available market and route context; never executes automatically.

POST

/tasks/alert-create

Informational monitor rules for market, route, liquidity, Guardian, or watchlist events.

03 Proof contracts

Responses are contracts, not vibes.

The model can explain. It cannot invent safety, liquidity, holder proof, approvals, wallet readiness, or execution permission when provider rails are missing.

paragon.core_adapter_envelope.v1Universal specialist, evidence, synthesis, Guardian, and handoff proof.
paragon.public_response_contract.v1Public answer boundary: no custody, no agent signing, no unsafe wording.
paragon.route_preview_contract.v1Spend token, route proof, pool evidence, approval state, and wallet scope.
paragon.exact_contract_provider_runtime.v1Provider status and missing forensic proof for exact-token scans.
paragon.dex_handoff_contract.v1Preview URLs and wallet-review links only after Guardian gates pass.
paragon.alert_monitor_contract.v1Alerts are informational and cannot become wallet or execution proof.
04 Safety boundary

What Paragon can and cannot do.

Allowed

Research, evidence collection, route preview, wallet readiness, alerts, and Guardian scoring.

Blocked

Custody, private key access, agent signing, automatic approvals, transfers, swaps, or bridges.

Handoff scopes

research_only, preview_only, wallet_review, or blocked. The user wallet remains the signer.

05 Agentverse adapter

Public rail, bounded by Core.

Agentverse can expose the Paragon public profile, manifest, chat protocol, test prompts, and a safe task adapter. Formal agent1 identity is still pending, and public tasks cannot bypass Task API access policy or Guardian.

public adapter/agentverse/volt/tasks

Safe market-scan is public. Premium route-check remains authenticated.

06 Provider depth

The evidence layer is the moat.

Provider status is visible because missing proof should reduce confidence, not get hidden by polished model text.

Active

Market data, CMC/CG/DexScreener style source labels, route and wallet proof surfaces.

Expanding

Holder concentration, deployer history, LP lock/burn, launch-flow proof, and pool depth.

Pending

Fresh-wallet clusters, sniper/bundle behavior, honeypot, tax, blacklist, and buy/sell simulation.

07 Current status

Strong beta core. Provider depth still in progress.

Paragon Core already has Task API, Core envelope, Guardian boundary, Agentverse public adapter, route and wallet proof, alert contracts, and template foundations. This is the base for Paragon Agents and DEX handoff surfaces. Still in progress: deeper forensics, formal Agentverse identity, Trust Wallet TWAK runtime, optional BNBAgent testnet sidecar, standalone Paragon runtime, and future protocol or chain infrastructure.

Choose a builder path