---
name: lookup-trust-center
type: api
description: Given a company name or domain, return its trust center URL, platform, and compliance certifications.
endpoint: https://trustlists.org/api/trust-centers.json
method: GET
---

# Lookup Trust Center

Use the trustlists dataset to find a specific company's trust center.

## How to use

1. Fetch `https://trustlists.org/api/trust-centers.json`. The response is a JSON object with a `data` array of entries.
2. Match against the user's input by either `name` (case-insensitive contains/equals) or `domain` (exact or suffix).
3. Return the matched company's `trustCenter`, `platform`, and `certifications` fields.

## Example entry

```json
{
  "name": "Cloudflare",
  "website": "https://www.cloudflare.com/",
  "domain": "cloudflare.com",
  "trustCenter": "https://www.cloudflare.com/trust-hub/",
  "platform": "Self-hosted",
  "certifications": ["SOC 2 Type II", "ISO 27001", "PCI DSS"]
}
```

## Example agent flow

> User: "Where is Cloudflare's trust center?"
>
> Agent: Finds entry where `name === "Cloudflare"` → returns `https://www.cloudflare.com/trust-hub/`.
