For the complete documentation index, see llms.txt. This page is also available as Markdown.

Blacklists

If the company is included on the blacklist records by OFAC

Fields

Field

Type

Description

description

String

Description

organization

String

Organization

Query example

### query
query findCompanyByDomain($domain: String!) {
    company(domain: $domain) {
        blacklisted {
            description
            organization
        }
    }
}

### variables
{ "domain": "stripe.com" }

Last updated

Was this helpful?