---
title: "Public Trust Profile API - Trooth"
description: "GET /public/trust/:slug returns a company's public Trust Profile as JSON, by domain or workspace slug. Public, unauthenticated, and live in the page."
canonical_url: "https://trooth.co/docs/trust-profile-api"
markdown_url: "https://trooth.co/docs/trust-profile-api.md"
generated_from: "the rendered page, converted to Markdown when this was requested"
agent_index: "https://trooth.co/llms.txt"
---

# Public Trust Profile API

GET`/public/trust/:slug`Public

GET /public/trust/:slug returns a company's public Trust Profile as JSON, a machine-readable format (the response itself carries no signature): the profile name, domain and jurisdiction, the pillar summary, the chain evidence, the AI profile, the date of the most recent reading in trustScore.computedAt (a date and nothing else; the container keeps its old name for readers built against it), and a disclaimer with its URL. The identifier can be the company's domain or its workspace slug. Three answers share a 404, and the body says which: a company Trooth holds no record for (status: "unclaimed", with a claim link), a company that has chosen not to publish (status: "private"), and a company whose one profile is its Trust Profile (error: "moved" with its canonicalUrl). The full response schema is PublicTrustProfile in [/openapi.yaml](https://trooth.co/openapi.yaml). Public and unauthenticated. The Trooth application programming interface (API) applies no rate limit to this read today, and each read of a profile served here is counted as a view of it.

Live requestPublic · no key

Get/public/trust/

```
curl -s https://api.trooth.co/public/trust/your-co \
  -H "Accept: application/json"
```

Response

Press Run. Nothing is shown here until a real response comes back, so this pane never displays a payload the API did not send.

Calls api.trooth.co directly from your browser. Public and unauthenticated. The route applies no rate limit of its own today, though an edge or platform limit in front of it may still answer 429. A run against a published profile is counted as a view of it.

[See a live witnessed profile](https://trooth.co/network/trooth.co)

## Terms

Use of the Trooth application programming interface (API) is subject to the [Terms of Service](https://trooth.co/terms).

## Structured data

```json
{
  "@context": "https://schema.org",
  "@graph": [
    {
      "@type": "Organization",
      "@id": "https://trooth.co/#org",
      "name": "Trooth",
      "legalName": "Trooth, LLC",
      "alternateName": [
        "Trooth, LLC",
        "trooth.co"
      ],
      "url": "https://trooth.co",
      "logo": {
        "@type": "ImageObject",
        "@id": "https://trooth.co/#logo",
        "url": "https://trooth.co/brand/trooth-mark_black-on-white_1024.png",
        "contentUrl": "https://trooth.co/brand/trooth-mark_black-on-white_1024.png",
        "width": 1024,
        "height": 1024,
        "caption": "Trooth"
      },
      "image": {
        "@id": "https://trooth.co/#logo"
      },
      "description": "Trooth is an infrastructure and cybersecurity company providing Machine-Readable Trust. The Trooth Network keeps one current, evidence-backed page per company, rechecked on a schedule and signed so it can be replayed. 10 frameworks mapped.",
      "foundingDate": "2026",
      "address": {
        "@type": "PostalAddress",
        "streetAddress": "777 Brickell Ave, Suite 500, PMB 1174",
        "addressLocality": "Miami",
        "addressRegion": "FL",
        "postalCode": "33131",
        "addressCountry": "US"
      },
      "contactPoint": {
        "@type": "ContactPoint",
        "contactType": "customer support",
        "email": "hello@trooth.co",
        "url": "https://trooth.co/contact"
      },
      "sameAs": [
        "https://x.com/Troothllc",
        "https://github.com/troothllc",
        "https://www.crunchbase.com/organization/trooth",
        "https://www.wikidata.org/wiki/Q141292994",
        "https://www.youtube.com/@Troothllc",
        "https://www.trustpilot.com/review/trooth.co"
      ]
    },
    {
      "@type": "WebSite",
      "@id": "https://trooth.co/#website",
      "url": "https://trooth.co",
      "name": "Trooth",
      "alternateName": "Trooth Network",
      "inLanguage": "en",
      "publisher": {
        "@id": "https://trooth.co/#org"
      },
      "potentialAction": {
        "@type": "SearchAction",
        "target": {
          "@type": "EntryPoint",
          "urlTemplate": "https://trooth.co/network?q={search_term_string}"
        },
        "query-input": "required name=search_term_string"
      }
    },
    {
      "@type": "ItemList",
      "@id": "https://trooth.co/#sitelinks",
      "name": "Trooth sitelinks",
      "itemListElement": [
        {
          "@type": "SiteNavigationElement",
          "position": 1,
          "name": "Join Trooth now - it's free!",
          "url": "https://trooth.co/signup"
        },
        {
          "@type": "SiteNavigationElement",
          "position": 2,
          "name": "Company, Trooth",
          "url": "https://trooth.co/network/company/trooth"
        },
        {
          "@type": "SiteNavigationElement",
          "position": 3,
          "name": "Trooth Network",
          "url": "https://trooth.co/network"
        }
      ]
    }
  ]
}
```
