HYBRID-CHAINDEVELOPERS
DOCUMENTATIONv2
GET

Explorer · execution

List hybridscript executions

/api/v2/explorer/execution/executions
AUTHENTICATIONNone · publicAUTHORITATIVE OWNERexecution-evidence-read-modelCONTRACT AUTHORITYGenerated Rust OpenAPISTATUSSource ready · production listed

PURPOSE + BUSINESS CONTEXT

List hybridscript executions 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 hybridscript executions 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 hybridscript executions.
  • 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 hybridscript executions 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

string · nullableOptional cursor filter or pagination control applied before results are returned.

limitqueryOptional

integer · int32 · nullableOptional limit filter or pagination control applied before results are returned.Schema range: 0 to unbounded

terminationqueryOptional

string · nullableOptional termination filter or pagination control applied before results are returned.

qqueryOptional

string · nullableOptional q filter or pagination control applied before results are returned.

X-Request-IDheaderOptional

stringOptional caller correlation identifier. The gateway emits the effective value on the response.

RESPONSES

Status and payload examples

200Public minimized HybridScript executionsRead completed · JSON RESPONSE+
{
  "executions": [
    {
      "attestation": {
        "algorithm": "example-algorithm",
        "attestation_version": "example-attestation-version",
        "job_hash": "example-job-hash",
        "key_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
        "node_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
        "receipt_hash": "example-receipt-hash",
        "signature_base64": "example-signature-base64",
        "worker_image_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB"
      },
      "capability_hash": "example-capability-hash",
      "completed_at": "2026-09-02T18:30:00Z",
      "created_at": "2026-09-02T18:30:00Z",
      "deployment_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
      "entrypoint": "example-entrypoint",
      "environment": "example-environment",
      "evidence_version": "example-evidence-version",
      "execution_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
      "execution_limit": 0,
      "execution_units": 0,
      "input_hash": "example-input-hash",
      "job_hash": "example-job-hash",
      "node_region": "example-node-region",
      "operator_id": "01K4A7M4N8Y2Q6R9T3V5W7X1ZB",
      "output_hash": "example-output-hash",
      "package_hash": "example-package-hash",
      "policy_hash": "example-policy-hash",
      "prior_state_root": "example-prior-state-root",
      "receipt_hash": "example-receipt-hash",
      "resource_schedule": "example-resource-schedule",
      "resulting_state_root": "example-resulting-state-root",
      "termination": "example-termination",
      "unit_symbol": "example-unit-symbol"
    }
  ],
  "limit": 0,
  "next_cursor": "example-next-cursor"
}
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 plan and run identifiers, input and artifact commitments, isolation policy, approval state, and terminal execution receipt.
422Path, query, or body validation failed.Request must change · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
CALLER ACTION
Rebuild the request from the live OpenAPI operation and correct the rejected method, media type, header, parameter, or body field.
RETRY SAFETY
Do not retry the same invalid request. A corrected read may be sent as a new attempt.
STATE RECONCILIATION
Compare the submitted values with the documented constraints before another call. Refresh the plan and run identifiers, input and artifact commitments, isolation policy, approval state, and terminal execution receipt.
ESCALATE WHEN
Escalate when execution may have started but no terminal receipt exists, or when inputs, artifacts, isolation, and output commitments disagree.
502Core returned an invalid execution projectionDependency unavailable or outcome uncertain · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
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 plan and run identifiers, input and artifact commitments, isolation policy, approval state, and terminal execution receipt.
ESCALATE WHEN
Escalate when execution may have started but no terminal receipt exists, or when inputs, artifacts, isolation, and output commitments disagree.
503The authoritative service or read model is unavailable.Dependency unavailable or outcome uncertain · JSON RESPONSE+
{
  "code": "invalid_credentials",
  "message": "the supplied Hybrid credential is invalid"
}
INTEGRATION DECISIONinvalid_credentials
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 plan and run identifiers, input and artifact commitments, isolation policy, approval state, and terminal execution receipt.
ESCALATE WHEN
Escalate when execution may have started but no terminal receipt exists, or when inputs, artifacts, isolation, and output commitments disagree.

OPERATIONAL NOTES

Security and lifecycle guarantees

  • EXPLORER: Hybridscript executions through the canonical Hybrid-Chain V2 interface. Authoritative owner: execution-evidence-read-model.
  • The Rust gateway validates the public contract and routes only to the authoritative owner; clients never address internal services directly.
  • The tables and examples are derived from the current gateway source OpenAPI. Re-fetch the deployed OpenAPI before execution; deployment status is shown separately on this page.
  • Only parameters present in the OpenAPI operation are accepted; undocumented query keys fail closed with HTTP 422.
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