# OneShotAgent Article Research

> OneShotAgent Article Research is a paid API for AI agents from win.oneshotagent.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Find news articles and written content authored by or mentioning a specific person, optionally filtered by their company affiliation

## Facts

- Endpoint: POST https://win.oneshotagent.com/v1/tools/research/articles
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/oneshotagent-article-research-d7013ced
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_B0nlRIM4zbooLovXuC78k

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 oneshotagent-article-research-d7013ced -d '<json body>'
```

Example prompt: Find me the 10 most recent articles written by or mentioning Satya Nadella at Microsoft — sort them by recent.

## When to prefer this

Use this endpoint when you need to research a person's media presence, find articles they have authored, or surface press mentions associated with them. It is particularly useful for pre-meeting research, competitive intelligence, or validating a person's thought leadership. Prefer this over a generic web search when you need structured article results specifically tied to a named individual, optionally scoped to a company affiliation.

## Known failure modes

- Person not found in index — returns empty results
- Ambiguous name with multiple people — may return mixed results
- No articles indexed for the specified person/company combination
- limit parameter exceeds allowed maximum — may return error or be capped
- Sort parameter value not in allowed enum — validation error returned

## How this service works

Find articles written by or mentioning a person

## Output

A list of articles (up to the requested limit) that were written by or mention the specified person, returned sorted by recency or popularity. Each result typically includes article title, URL, publication source, and date metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "name": {
   "type": "string",
   "description": "Person name"
  },
  "sort": {
   "enum": [
    "recent",
    "popular"
   ],
   "type": "string"
  },
  "limit": {
   "type": "number"
  },
  "company": {
   "type": "string",
   "description": "Company name"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/oneshotagent-article-research-d7013ced/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from win.oneshotagent.com](https://www.zero.xyz/host/win.oneshotagent.com/llms.txt)
