# Satring Reputation Lookup

> Satring Reputation Lookup is a paid API for AI agents from satring.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Retrieves the reputation score and trust signals for a service listed on the Satring API directory

## Facts

- Endpoint: GET https://satring.com/api/v1/services/satring/reputation
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/satring-reputation-lookup-b7550879
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_8ShMRWkSU2lcEKocb2CSg

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 satring-reputation-lookup-b7550879
```

Example prompt: Can you check the reputation score for satring.com's own service on the Satring directory so I can see how trusted it is before I use it?

## When to prefer this

Use this endpoint when you need to programmatically assess the trustworthiness or standing of a service listed in the Satring L402/x402 API directory, especially before integrating with or paying for an unfamiliar API. Particularly useful for agents doing due diligence on micropayment-gated APIs.

## Known failure modes

- Service not found in directory — 404 response
- Payment required but not provided — 402 response
- Invalid service identifier — 400 bad request
- Satring API unavailable — 503 or timeout
- Rate limit exceeded — 429 response

## How this service works

satring.com reputation lookup

## Output

A JSON object containing reputation data for the queried service, including trust scores, reliability indicators, and any reputation signals associated with the service as indexed by the Satring platform.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input",
  "output"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string"
    },
    "queryParams": {
     "type": "object"
    }
   }
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "json"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/satring-reputation-lookup-b7550879/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from satring.com](https://www.zero.xyz/host/satring.com/llms.txt)
