HYBRID-CHAINDEVELOPERS
DOCUMENTATIONv2
GET

Explorer · contracts

Get contract explorer

/api/v2/explorer/contracts
AUTHENTICATIONNone · publicAUTHORITATIVE OWNERcontract-evidence-read-modelCONTRACT AUTHORITYGenerated Rust OpenAPISTATUSSource ready · production listed

PURPOSE + BUSINESS CONTEXT

List contract explorer from the public Explorer read model, with the identifiers and verification metadata defined by the live contract.

WHEN THIS CALL IS USEFUL

Call this when an explorer, wallet, indexer, auditor, or research agent needs to discover contract explorer and choose a canonical record for a later step so it can resolve public network state from a machine-readable projection.

OUTCOME · Discover

What changes

Read-only projection; it grants no mutation, settlement, traffic, or authority change.

WHY IT MATTERS

  • Gives people and agents a contract-backed way to discover contract explorer.
  • Keeps website presentation separate from the stable public contract that wallets, indexers, and agents can ingest.

ISOLATION + AUTHORITY

This is a public, read-only Explorer projection. It exposes only fields admitted by the live OpenAPI schema; it grants no owner, wallet, signing, settlement, publisher, matching, or trading authority. Indexed observation time is not the same as chain finality.

BEFORE YOU CALL

  • No bearer credential is required; apply bounded filters and canonical public identifiers where the contract provides them.
  • Use the live OpenAPI schema as the authority for the exact request shape and response model.
  • Account for projection freshness, indexing position, and chain or domain finality in the consuming decision.

WHAT TO DO NEXT

  • Select one canonical identifier from the response and open its detail operation when the live contract exposes one.
  • Follow the returned canonical identifiers and proof or related-resource links when independent verification is required.

AGENT GUIDANCE

  • Use contract explorer only for the purpose and lifecycle stage described by this operation; do not treat it as authority for an adjacent action.
  • Use the live OpenAPI schema as the authority for the exact request shape and response model.
  • Treat observation timestamps, indexing position, proof state, and finality as separate facts; do not infer final settlement or authority from presence in an Explorer result.
  • Use response links and canonical identifiers instead of constructing internal service URLs or scraping the website.
MACHINE CONTRACT

The exact deployed parameters, schemas, responses, security requirements, and Hybrid-Chain agent metadata are authoritative at this operation's production OpenAPI JSON Pointer. The readable tables below add integration guidance; the deployed OpenAPI controls if guidance and the machine contract ever differ.

Open the authoritative production contract

EXTENDED INTEGRATION GUIDANCE

Readable request and response reference

Examples illustrate integration intent; the referenced OpenAPI operation and component schemas define the executable shape.

PARAMETERS

Headers, path, query, and body

NAMELOCATIONPRESENCETYPE / RULES / PURPOSE
cursorqueryOptional

opaque stringCursor returned by the preceding page.

limitqueryOptional

integer · 1–200Maximum records to return.EXAMPLE50

statequeryOptional

stringOptional lifecycle-state filter.EXAMPLEREADY_TO_DEPLOY

RESPONSES

Status and payload examples

200Public frozen and launched contract records; drafts are excluded.Read completed · JSON RESPONSE+
{
  "contracts": [
    {
      "launchId": "9b51ed4c9c8f4aec85d1bd5520e40557",
      "slug": "treasury-settlement-v1",
      "name": "Treasury Settlement",
      "description": "Governed HybridScript settlement contract.",
      "networkId": "hybrid-devnet",
      "chainId": "hybrid-1",
      "contractKind": "HYBRIDSCRIPT",
      "packageHash": "sha256:1111111111111111111111111111111111111111111111111111111111111111",
      "sourceHash": "sha256:2222222222222222222222222222222222222222222222222222222222222222",
      "artifactHash": "sha256:3333333333333333333333333333333333333333333333333333333333333333",
      "manifestHash": "sha256:4444444444444444444444444444444444444444444444444444444444444444",
      "compilerProfile": "hybridscript-0.1",
      "factoryAddress": null,
      "constructorArgsHash": "sha256:5555555555555555555555555555555555555555555555555555555555555555",
      "initialStateHash": "sha256:6666666666666666666666666666666666666666666666666666666666666666",
      "runtimePolicyHash": "sha256:7777777777777777777777777777777777777777777777777777777777777777",
      "deploymentSalt": "treasury-settlement-001",
      "xuLimit": 100000,
      "capabilities": [
        "PAUSABLE",
        "TREASURY"
      ],
      "safeguards": {
        "upgradeTimelockSeconds": 86400,
        "mintCap": null,
        "emergencyPause": true,
        "recoveryDelaySeconds": 172800,
        "sourceVerified": true,
        "deterministicBuild": true
      },
      "acceptedRiskCodes": [],
      "launchIntentHash": null,
      "trustScore": null,
      "trustGrade": null,
      "state": "AWAITING_AUTHORITY_BINDINGS",
      "expectedContractAddress": null,
      "contractAddress": null,
      "bindings": [],
      "events": [],
      "chainEvidence": [],
      "created": "2026-08-10T21:00:00Z",
      "updated": "2026-08-10T21:00:00Z"
    }
  ],
  "page": {
    "nextCursor": null,
    "limit": 50
  }
}
INTEGRATION DECISION
CALLER ACTION
Accept the returned representation or receipt, then select one canonical identifier from the response and open its detail operation when the live contract exposes one.
RETRY SAFETY
For another page, send the returned opaque cursor unchanged with the same filters. Restart without a cursor when a new snapshot is required.
STATE RECONCILIATION
Use returned identifiers and versions as the comparison point for later reads. Refresh the draft or launch revision, approval state, artifact commitments, authority assignments, and deployment or rejection receipt before another mutation.
503The public contract read model is unavailable.Dependency unavailable or outcome uncertain · JSON RESPONSE+
{
  "code": "contract_registry_unavailable",
  "message": "The public contract read model is unavailable."
}
INTEGRATION DECISIONcontract_registry_unavailable
CALLER ACTION
Treat the failure as transient and preserve the last known good representation without presenting it as fresh.
RETRY SAFETY
Retry with bounded exponential backoff and jitter; stop after the integration's failure budget is exhausted.
STATE RECONCILIATION
Refresh the draft or launch revision, approval state, artifact commitments, authority assignments, and deployment or rejection receipt before another mutation.
ESCALATE WHEN
Escalate when revision lineage, approvals, artifact hashes, deployment authority, or finality evidence cannot be proven consistently.

OPERATIONAL NOTES

Security and lifecycle guarantees

  • No authentication is required.
  • Private workspace ownership and draft authority assignments are omitted.
DOCUMENTATION STATUS

This route is implemented in canonical gateway source and appears in the production OpenAPI snapshot observed 2026-09-11T06:35:11.572Z. Authentication, tenant, feature, venue, and market policy still apply.

Verify the exact production OpenAPI operation Return to the V2 directory