# ForwardLane Repository Graph — Full Node & Edge Export

> ForwardLane Repository Graph — Full Node & Edge Export is a paid API for AI agents from agents.forwardlane.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-19).

Returns every node and typed edge in a repository's code graph, including CONTAINS, CALLS, INHERITS, IMPORTS, DEPENDS_ON, and CONTRIBUTED_TO relationships.

## Facts

- Endpoint: GET https://agents.forwardlane.com/api/graph
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-19
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/forwardlane-repository-graph-full-node-edge-export-2ea4d597
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BV19318wQ0GsV-OVDFMQa

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability forwardlane-repository-graph-full-node-edge-export-2ea4d597
```

Example prompt: Pull the full code graph for this repository — every node and typed edge including function calls, inheritance, imports, dependencies, and contributor relationships — so I can analyze the entire structure.

## When to prefer this

Choose this endpoint when you need the complete, exhaustive graph of a repository — all node types and all edge types in one call — rather than a focused search or neighbor lookup. Prefer sibling endpoints (neighbor lookup, BM25/vector search, function similarity) when you only need a subset of nodes or a targeted query. This endpoint is best for bulk analysis, visualization, full dependency audits, or training/ingestion pipelines that need the entire graph.

## Known failure modes

- Missing or invalid repository identifier returns a 404 not found error
- Response payload may be extremely large for large repositories, potentially causing timeout or memory issues
- Rate limiting or payment failure (x402) if USDC balance is insufficient
- Malformed query parameters result in a 400 bad request
- Repository not yet indexed returns empty or partial graph

## How this service works

Every repository-level node and typed edge (CONTAINS, CALLS, INHERITS, IMPORTS, DEPENDS_ON, CONTRIBUTED_TO). Large response.

## Output

A large JSON response containing every repository-level node (functions, classes, modules, files, contributors, etc.) and all typed edges between them — CONTAINS, CALLS, INHERITS, IMPORTS, DEPENDS_ON, and CONTRIBUTED_TO — representing the full code knowledge graph for the specified repository.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/forwardlane-repository-graph-full-node-edge-export-2ea4d597/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.forwardlane.com](https://www.zero.xyz/host/agents.forwardlane.com/llms.txt)
