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.

Endpoint health
verified 5d ago
get_chain
get_audit
get_timeline
get_integrity
4/4 passing latest checkself-healing
Endpoints
4
Updated
1mo 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.

This call costs1 credit / call— charged only on success
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
5d 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/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. 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 →
openinsider.com API
Track insider trading activity by accessing the latest SEC filings, identifying cluster buys, and discovering top insider purchases with advanced filtering capabilities. Screen stocks based on insider behavior patterns and visualize buy/sell trends to inform your investment decisions.
render.com API
Check Render's current platform status, review past incidents and their resolutions, and stay updated with the latest product changelog releases. Monitor service health and historical downtime to plan your deployments and understand platform changes.
tractian.com API
Query Tractian's sensor hardware specifications and AI-powered detection intelligence to understand exactly how their monitoring system captures vibrations and interprets equipment health data. Get detailed technical insights into both the physical sensors and the software algorithms that power Tractian's predictive maintenance capabilities.
insidertrading.org API
Access insider trading data sourced from SEC Form 4 filings, including buy and sell transactions, filing dates, insider names, share counts, and company details. Filter by ticker, insider, trade type, or date range, and retrieve ranked lists of the most actively traded stocks among corporate insiders.
artificialintelligenceact.eu API
Access and search the complete EU AI Act legislation, including specific articles, recitals, annexes, and chapters, while viewing implementation timelines and related regulatory details. Quickly find relevant legal sections through keyword search or browse the full text organized by structure.
polymarketanalytics.com API
Track any trader's performance on Polymarket by retrieving their wallet positions, trade history, profit/loss records, category breakdowns, and deposit/withdrawal activity. Monitor trading strategies and market exposure across multiple prediction markets in real-time.
halborn.com API
Access security audit reports, detailed findings, and expert insights from Halborn to research which companies have been audited and review their security assessments. Search blog posts and whitepapers to stay informed on the latest security research and industry best practices.
cryptocraft.com API
Track real-time cryptocurrency prices across 20+ exchanges, analyze historical OHLC data and coin fundamentals, and stay informed with upcoming economic events and market news. Monitor thousands of coins and instruments to make data-driven investment decisions.