---
name: get-company-details
type: content
description: Fetch a single company's trust center page as markdown, including platform, certifications, and trust center link.
endpoint: https://trustlists.org/company/{slug}
method: GET
accept: text/markdown
---

# Get Company Details

Retrieve a single company's trust center record as markdown via content negotiation.

## How to use

Send a `GET` request with `Accept: text/markdown`:

```
GET /company/cloudflare
Accept: text/markdown
```

The server returns `Content-Type: text/markdown` with the company's trust center metadata rendered as markdown. Browsers will continue to receive the HTML page by default.

## Slug format

The slug is the company name lowercased with spaces replaced by `-` and non-alphanumerics stripped (e.g. `1Password` → `1password`, `Acme Inc.` → `acme-inc`). The full list of valid slugs can be derived from the `name` field in `/api/trust-centers.json`.

## Example response

```markdown
# Cloudflare — Trust Center

- **Website:** https://www.cloudflare.com/
- **Trust Center:** https://www.cloudflare.com/trust-hub/
- **Platform:** Self-hosted
- **Certifications:** SOC 2 Type II, ISO 27001, PCI DSS
```
