Discover/Onrender API
live

Onrender APIinf-tracer-rh3o.onrender.com

Access bitemporal audit trail data from INF Tracer agent sessions: event timelines, hash chain proofs, and integrity verification across 4 endpoints.

This API takes change requests — .
Endpoint health
verified 4d ago
get_audit
get_timeline
get_chain
get_integrity
4/4 passing latest checkself-healing
Endpoints
4
Updated
20d ago

What is the Onrender API?

The INF Tracer API exposes 4 endpoints for reading audit trail data from agent sessions, covering event timelines, hash chain integrity, and full audit document exports. The get_timeline endpoint returns every agent event — memory writes, LLM calls, tool uses, and decisions — in chronological order alongside memory snapshots. The get_audit endpoint combines all of that with a cryptographic chain proof into a single exportable document suitable for offline verification.

Try it

No input parameters required.

api.parse.bot/scraper/026191c0-de22-4368-a67b-51f0f231157b/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/026191c0-de22-4368-a67b-51f0f231157b/get_timeline' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace inf-tracer-rh3o-onrender-com-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.


"""Walkthrough: INF Tracer SDK — bitemporal audit trail access, bounded and re-runnable."""
from parse_apis.inf_tracer_rh3o_onrender_com_api import InfTracer, ParseError

client = InfTracer()

# Quick integrity check — single call, typed fields.
session = client.sessions.get()
print(f"Agent: {session.agent_id}, Integrity: {session.integrity}, Chain: {session.chain_length} blocks")

# Walk the event timeline — limit caps total items fetched.
for event in client.sessions.timeline(limit=5):
    print(f"  [{event.event_type}] {event.summary} @ {event.timestamp_iso}")

# Retrieve the full chain proof for cryptographic verification.
proof = client.sessions.chain()
print(f"Chain verified: {proof.integrity}, genesis={proof.genesis_hash[:16]}…, head={proof.head_hash[:16]}…")

# Full audit document — comprehensive export with nested typed resources.
try:
    doc = client.sessions.audit()
    print(f"Audit exported at {doc.export_time}, {doc.event_count} events, integrity={doc.integrity.integrity}")
except ParseError as exc:
    print(f"Audit retrieval failed: {exc}")

print("exercised: sessions.get / sessions.timeline / sessions.chain / sessions.audit")
All endpoints · 4 totalmissing one? ·

Retrieves the full agent event timeline for the current session. Returns all events (memory writes, LLM calls, tool uses, decisions) in chronological order with their associated memory snapshots at each point in time.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "count": "integer",
    "events": "array of event objects containing event_id, event_type, timestamp_iso, data, memory_snapshot, and summary",
    "agent_id": "string"
  },
  "sample": {
    "data": {
      "count": 17,
      "events": [
        {
          "data": {
            "key": "applicant_id",
            "value": "app_gemini_882",
            "old_value": null
          },
          "hash": null,
          "summary": "Memory updated: applicant_id = app_gemini_882",
          "agent_id": "credit-underwriter-production-session",
          "event_id": "evt-975f962509a3",
          "timestamp": 1782566401.4305706,
          "event_type": "memory_write",
          "timestamp_iso": "2026-06-27T13:20:01.430571+00:00",
          "memory_snapshot": {
            "applicant_id": "app_gemini_882"
          }
        }
      ],
      "agent_id": "credit-underwriter-production-session"
    },
    "status": "success"
  }
}

About the Onrender API

Event Timeline and Session Data

The get_timeline endpoint returns the complete ordered sequence of events recorded for the current agent session. Each event object includes an event_id, event_type, ISO-formatted timestamp_iso, a data payload, a memory_snapshot capturing state at that point in time, and a summary field. The response also surfaces the agent_id and a total count of events. This gives you a full bitemporal view of what happened during a session and what the agent's memory state looked like at each step.

Hash Chain Integrity Verification

Two endpoints handle cryptographic verification. get_integrity returns a quick status check: the agent_id, current head_hash, an integrity status string, and both chain_length and event_count integers. For deeper verification, get_chain returns the complete hash chain including the genesis_hash, head_hash, a verified_at Unix timestamp, and the full hash_sequence — an ordered array of SHA-256 hex strings representing every block fact hash in the chain. This lets you independently replay and verify the chain without trusting the service's integrity status alone.

Complete Audit Export

get_audit is the all-in-one export endpoint. Its response bundles the full events array, the agent_id, an integrity object with verification status, a chain_proof object containing the complete hash_sequence, an event_count, and an export_time string. The document is structured for offline cryptographic verification — you get everything needed to validate both the event data and its hash chain provenance in a single response.

Session Scope

All four endpoints operate against the current agent session; there are no input parameters to filter by date range, event type, or agent identifier. The session context is implicit in the request, so each call reflects the state of the running session at the time it is made.

Reliability & maintenanceVerified

The Onrender API is a managed, monitored endpoint for inf-tracer-rh3o.onrender.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when inf-tracer-rh3o.onrender.com changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official inf-tracer-rh3o.onrender.com API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
4d ago
Latest check
4/4 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Verify the integrity of an AI agent's decision log by replaying the SHA-256 hash sequence from get_chain
  • Reconstruct the memory state of an agent at a specific point in time using memory_snapshot fields from get_timeline
  • Export a tamper-evident audit document via get_audit for compliance or legal review
  • Monitor session health by polling get_integrity for chain validity and event count without fetching the full event list
  • Audit which tool calls and LLM invocations occurred during a session using event_type fields in the timeline
  • Archive the genesis-to-head hash chain for long-term cryptographic provenance records using get_chain output
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does INF Tracer have an official developer API?+
INF Tracer (inf-tracer-rh3o.onrender.com) does not appear to publish an official public developer API or documented SDK. This Parse API provides structured access to its session audit data.
What does `get_chain` return beyond what `get_integrity` provides?+
get_integrity returns a summary — head_hash, integrity status, chain_length, and event_count — suitable for a quick validity check. get_chain adds the genesis_hash, a verified_at timestamp, and the full hash_sequence array of SHA-256 hashes, which is what you need to independently replay and verify the entire chain block by block.
Can I filter events by event type or date range?+
Not currently. All four endpoints take no input parameters, so get_timeline and get_audit always return the complete event set for the current session. You can fork this API on Parse and revise it to add filtering logic by event_type or timestamp_iso range.
Can I retrieve audit data for past sessions or a specific agent by ID?+
Not currently. The API reflects the current active session; there is no parameter to specify a historical session or a particular agent_id. You can fork this API on Parse and revise it to add session-selection endpoints if the underlying source supports it.
Is the `integrity` field in `get_audit` the same as the one in `get_integrity`?+
They share the same verification concept but differ in shape. get_integrity returns integrity as a plain string status. In get_audit, integrity is an object that may carry additional verification metadata alongside the status. Use get_integrity for lightweight polling and get_audit when you need the full document for offline verification.
Page content last updated . Spec covers 4 endpoints from inf-tracer-rh3o.onrender.com.
Related APIs in Developer ToolsSee all →
crt.sh API
Search for SSL/TLS certificates across public transparency logs by domain, fingerprint, serial number, or public key, and retrieve detailed certificate information including issuer, validity dates, and certificate chain details. Monitor certificate issuance for domains you care about to track security changes and detect unauthorized certificates.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
python.org API
Access comprehensive Python release information including downloads, versions, and supported operating systems, plus stay updated with the latest Python news and events. Search across Python.org's resources and browse release files, details, and the FTP index all in one place.
nvidia.com API
nvidia.com API
lucide.dev API
Browse and download thousands of Lucide icons with instant search and category filtering to find exactly what you need. Get SVG files and metadata for each icon to integrate them seamlessly into your projects.
alienvault.com API
Search and analyze global threat intelligence data including indicators of compromise, threat pulses, and adversary profiles from the Open Threat Exchange community. Monitor recent security alerts and access detailed information about threats and adversaries to strengthen your cybersecurity defenses.
ask.brave.com API
Ask Brave's AI-powered answer engine to get intelligent responses on any topic complete with cited sources, or use the suggest endpoint to discover relevant information and follow-up questions. Get AI-generated answers that combine web knowledge with source attribution, helping you research topics efficiently and verify information through direct references.
httpbin.org API
Test HTTP requests and inspect what data your client is sending, including your IP address, headers, user agent, and generated UUIDs. Use it to verify how servers receive and process your requests during development and debugging.