# API Acre Wikidata Organization Search

> API Acre Wikidata Organization Search is a paid API for AI agents from apiacre.com, paid per call via x402, $0.015/call, status unknown (last checked 2026-09-14).

Searches CC0 Wikidata for organization candidates by name and returns normalized public metadata including websites, inception dates, identifiers, entity types, countries, industries, headquarters, parent/subsidiary/founder/owner/product links, with non-verification caveats.

## Facts

- Endpoint: POST https://apiacre.com/v1/research/wikidata-organization-search
- Price: $0.015/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-acre-wikidata-organization-search-663b386e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a_y-vyr6bmUB_mCWqHSwj

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 api-acre-wikidata-organization-search-663b386e -d '<json body>'
```

Example prompt: Search Wikidata for up to 5 organization candidates matching 'Siemens' in English and return their normalized public metadata — website, inception date, country, industry, headquarters, parent, and any subsidiary or product links.

## When to prefer this

Choose this endpoint when you need structured, normalized public metadata about organizations from an open, CC0-licensed knowledge graph (Wikidata) without needing real-time or verified commercial data. Ideal for enriching CRM records, populating knowledge bases, researching company histories, or mapping corporate structures using open data. Prefer over proprietary company APIs when cost, licensing, or open-data requirements matter. Not suitable when you need verified, legally authoritative, or real-time financial data.

## Known failure modes

- No matching organization found for the given name — empty results array returned
- Wikidata service unavailable or rate-limited — upstream error propagated
- Ambiguous organization name returns many low-confidence candidates — agent must disambiguate
- Requested language not available for some fields — fields fall back to English or null
- max_results set too high may slow response or hit upstream limits

## How this service works

Search CC0 Wikidata organization candidates and normalize public websites, inception dates, company identifiers, entity types, countries, industries, headquarters, parent, founder, owner, subsidiary, and product links with explicit non-verification caveats.

## Output

A list of matching Wikidata organization candidates (up to max_results), each normalized with fields such as public website URL, inception date, company identifiers (e.g. LEI, CIK), entity type, country, industry classification, headquarters location, parent organization, founder, owner, subsidiaries, and product links. All data carries explicit non-verification caveats indicating it is sourced from CC0 Wikidata and has not been independently confirmed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "language": {
   "type": "string"
  },
  "max_results": {
   "type": "integer"
  },
  "organization_name": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "query": {
    "language": "en",
    "organizationName": "OpenAI"
   },
   "source": "https://www.wikidata.org/w/api.php",
   "license": {
    "url": "https://www.wikidata.org/wiki/Wikidata:Licensing",
    "name": "Creative Commons CC0 1.0"
   },
   "candidates": [
    {
     "id": "Q242167",
     "rank": 1,
     "label": "OpenAI",
     "aliases": [
      "Open AI"
     ],
     "description": "artificial intelligence research organization"
    }
   ],
   "disclaimer": "Public knowledge-graph enrichment for research only; not KYB, KYC, legal, com...",
   "limitations": [
    "Demonstration candidate only; paid calls return current community-edited leads.",
    "Candidates are not identity, ownership, legal-status, or organization-type ve..."
   ],
   "retrievedAt": "2026-08-20T12:00:00+00:00",
   "documentation": "https://www.wikidata.org/wiki/Wikidata:Data_access",
   "candidateCount": 1
  },
  "meta": {
   "cached": false,
   "sources": [],
   "warnings": [],
   "duration_ms": 42,
   "next_actions": [
    {
     "path": "/v1/research/lei-entity-search",
     "title": "GLEIF legal entity search",
     "method": "POST",
     "reason": "Compare one selected Wikidata label with official GLEIF legal-entity candidates.",
     "service": "research.lei-entity-search"
    }
   ]
  },
  "service": "research.wikidata-organization-search",
  "version": "1",
  "request_id": "018f1f54-7f38-7ba2-8dc3-5f90272d9f1a"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-acre-wikidata-organization-search-663b386e/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)
