# TrustLayer Owner Agent Portfolio Lookup

> TrustLayer Owner Agent Portfolio Lookup is a paid API for AI agents from api.thetrustlayer.xyz, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns all agents associated with a given EVM or Solana owner wallet address, including trust scores, chain coverage, and risk assessment with truncation metadata.

## Facts

- Endpoint: GET https://api.thetrustlayer.xyz/owner/0xc15366b9c611d23dd1433c5f6782b2ab64457d03
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-thetrustlayer-xyz-0960c021
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_YyZn_hih9ee0t0tawnEdc

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 api-thetrustlayer-xyz-0960c021
```

Example prompt: Can you pull up all the agents registered under owner wallet 0xc15366b9c611d23dd1433c5f6782b2ab64457d03 on TrustLayer and show me their trust scores, which chains they're on, and any risk flags?

## When to prefer this

Use this endpoint when you need a comprehensive view of all agents operated by a specific wallet owner, including cross-chain coverage and trust/risk metadata. Prefer this over single-agent lookups when the user wants a portfolio-level view of an owner's AI agents rather than details on one specific agent address.

## Known failure modes

- Invalid or malformed wallet address returns 400 error
- Owner address with no registered agents returns empty agent list
- Large agent portfolios may be truncated (_truncated: true) requiring pagination
- Network or registry unavailability returns 5xx error
- Non-EVM non-Solana address formats may not be recognized

## How this service works

Reputation intelligence for the autonomous agent economy. Trust scores, Sybil detection, and cross-chain identity for 130,000+ ERC-8004 agents across 20 chains. Powered by x402 micropayments.

## Output

A JSON object listing all agents associated with the queried owner address, each with trust score (0-100), chain coverage, and risk assessment. The response includes a _truncated flag indicating whether the full list was cut off, plus summary metadata about the owner's agent portfolio.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "address": "0xc15366b9c611d23dd1433c5f6782b2ab64457d03"
  }
 }
}
```

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "address"
     ],
     "properties": {
      "address": {
       "type": "string",
       "description": "Owner wallet address (EVM 0x... or Solana)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "totalAgents": 3,
  "ownerAddress": "0x1234...abcd",
  "avgTrustScore": 72,
  "riskAssessment": "medium"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-thetrustlayer-xyz-0960c021/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.thetrustlayer.xyz](https://www.zero.xyz/host/api.thetrustlayer.xyz/llms.txt)
