# ACRE Organization Evidence Search

> ACRE Organization Evidence Search is a paid API for AI agents from apiacre.com, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Searches a single organization across GLEIF, USAspending, SEC filings, and OFAC Entity records, returning bounded multi-source evidence without making identity, linkage, or compliance assertions.

## Facts

- Endpoint: POST https://apiacre.com/v1/research/organization-evidence
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/acre-organization-evidence-search-a0853477
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5QZ_6wpgx8gJ4gz57H-Ux

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability acre-organization-evidence-search-a0853477 -d '<json body>'
```

Example prompt: Can you search for 'Palantir Technologies Inc' across official GLEIF, USAspending prime-contract, SEC filing, and OFAC Entity records and show me all the evidence each source returns?

## When to prefer this

Choose this endpoint when you need raw multi-source official government and regulatory evidence about a single organization without wanting any automated risk scoring, identity resolution, or compliance assertions. It is ideal for due-diligence research workflows, investigative research, or pre-screening where the caller needs to inspect source-level records independently. Prefer it over single-source lookups when coverage across GLEIF, USAspending, SEC, and OFAC is all needed in one call.

## Known failure modes

- Organization name too ambiguous to return useful results — multiple unrelated entities may surface
- No records found across any of the four sources for the queried organization
- GLEIF, USAspending, SEC, or OFAC upstream source temporarily unavailable, resulting in partial coverage
- Input organization name is misspelled or uses an unofficial abbreviation, reducing match quality
- Rate limit or payment failure resulting in 402 or 429 response

## How this service works

Retrieve a current supplier and organization evidence report from official GLEIF legal-entity, USAspending prime-contract, SEC filing-activity, and OFAC Entity records, with bounded source-specific coverage for procurement research and no identity, linkage, risk, or compliance verdict.

## Output

Returns structured, source-separated evidence objects for the queried organization from up to four official databases: GLEIF (legal entity registration data), USAspending (prime contract awards), SEC (filing activity), and OFAC (Entity List entries). Each source section includes what was found and a coverage indicator, without asserting identity matches, cross-source linkages, risk ratings, or compliance determinations.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "legal_name": {
   "type": "string"
  },
  "country_code": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  },
  "sec_identifier": {
   "anyOf": [
    {
     "type": "string"
    },
    {
     "type": "null"
    }
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "query": {
    "legalName": "Apple Inc.",
    "countryCode": "US",
    "secIdentifier": "AAPL",
    "contractLookbackYears": 5
   },
   "counts": {
    "secFilings": 0,
    "secSignals": 0,
    "federalContractAwards": 0,
    "legalEntityCandidates": 1
   },
   "sources": [
    {
     "url": "https://api.gleif.org/api/v1/lei-records",
     "status": "available",
     "section": "legalEntity"
    }
   ],
   "coverage": {
    "partial": false,
    "sections": {
     "legalEntity": "available",
     "federalContracts": "available",
     "secFilingActivity": "available",
     "ofacEntityCandidates": "available"
    },
    "availableSectionCount": 4,
    "requestedSectionCount": 4
   },
   "warnings": [],
   "disclaimer": "Official public organization evidence for research only; ...",
   "legalEntity": {
    "data": {
     "status": "matched",
     "license": {
      "id": "CC0-1.0"
     },
     "matches": [
      {
       "lei": "HWUPKR0MPOU8FGXBT394",
       "match": {
        "type": "exact",
        "score": 1
       },
       "legalName": "Apple Inc.",
       "entityStatus": "ACTIVE"
      }
     ],
     "matchCount": 1
    },
    "source": "https://api.gleif.org/api/v1/lei-records",
    "status": "available"
   },
   "limitations": [
    "Every source searches independently; similarly named reco...",
    "Coverage is bounded by the requested result limits and lo...",
    "No OFAC candidate is not sanctions clearance, and any can...",
    "The bundle excludes people, beneficial-ownership inferenc..."
   ],
   "retrievedAt": "2026-08-13T09:30:00+00:00",
   "federalContracts": {
    "data": {
     "awards": [],
     "hasMore": false,
     "awardsReturned": 0
    },
    "source": "https://api.usaspending.gov/api/v2/search/spending_by_award/",
    "status": "available"
   },
   "secFilingActivity": {
    "data": {
     "resolution": {
      "cik": "0000320193",
      "method": "ticker_exact",
      "directoryName": "Apple Inc."
     },
     "filingActivity": {
      "cik": "0000320193",
      "name": "Apple Inc.",
      "filingCount": 0,
      "attentionScore": 0
     }
    },
    "source": "https://www.sec.gov/files/company_tickers_exchange.json",
    "status": "available"
   },
   "crossSourceLinkage": "not_established",
   "ofacEntityCandidates": {
    "data": {
     "status": "no_candidates_above_threshold",
     "candidates": [],
     "candidateCount": 0,
     "candidatesReturned": 0
    },
    "source": "ht
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/acre-organization-evidence-search-a0853477/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from apiacre.com](https://www.zero.xyz/host/apiacre.com/llms.txt)
