---
title: "Quickstart - Trooth"
description: "Read a company's published Trust Profile with one request: no key, no account. cURL, JavaScript, Python and Go, against the live API at api.trooth.co."
canonical_url: "https://trooth.co/docs/quickstart"
markdown_url: "https://trooth.co/docs/quickstart.md"
generated_from: "the rendered page, converted to Markdown when this was requested"
agent_index: "https://trooth.co/llms.txt"
---

# Quickstart

One GET returns the witnessed record for a company on the Trooth Network, or the address of its one Trust Profile, with no key and no account. The examples on this page run against the live Trooth application programming interface (API) at api.trooth.co.

bash

# No key, no account. Output abridged; your-co is a placeholder for a real slug.

curl -s https://api.trooth.co/public/trust/your-co

{ "profile": { "displayName": "Your Co", "domain": "your-co.com" } }

# Or read the same record from a terminal.

npx trooth check your-co.com

## Read a profile from your code

The public Trust Profile API needs no key or account. It returns a company's published Trust Profile as JSON, a machine-readable format, fetched by its domain or workspace slug: pillar counts, audit-chain evidence, an AI profile and the date of the most recent reading, which is one date for the whole record rather than one per line. The authenticated endpoints that run your dashboard are scoped to your signed-in session and are not offered as a public API. Trooth automates the reading and signs the event; Trooth never signs on a company's behalf.

```
curl https://api.trooth.co/public/trust/your-co
```

Rate limits, and the one documented use of a workspace API key, are on the [API reference](https://trooth.co/docs/api).

## Next steps

[Public Trust Profile API Fetch any listed company's public Trust Profile as JSON, by its domain or its slug.](https://trooth.co/docs/trust-profile-api)

[CLI Check a company from your terminal, and list what your own infrastructure declares.](https://trooth.co/docs/cli)

[Trust Badge Show your Trust Profile on your own site. The badge reads your record each time the page loads.](https://trooth.co/docs/trust-badge)

Every endpoint, with its limits, is on the [API reference](https://trooth.co/docs/api).

## 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"
        }
      ]
    }
  ]
}
```
