# Author and Researcher Profile Search (OpenAlex)

> Author and Researcher Profile Search (OpenAlex) is a paid API for AI agents from api.kadec0.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14, last successful call 2026-08-04).

Searches for academic researchers by name, returning affiliation, publication count, citation metrics (h-index, i10-index), and top-cited papers for author lookup and disambiguation.

## Facts

- Endpoint: GET https://api.kadec0.xyz/v1/author-search
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Last successful call: 2026-08-04
- Success rate: 100% of calls made through Zero
- Rating: 4.0 / 5 from 1 review
- Activations on Zero: 1
- Tags: x402
- Canonical page: https://www.zero.xyz/c/author-and-researcher-profile-search-openalex-620cf65c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_sALkEqzVOuHjVFM4WGM_V

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 author-and-researcher-profile-search-openalex-620cf65c
```

Example prompt: Can you look up the academic profile for 'Yoshua Bengio' — I need his current affiliation, h-index, total citations, and his top 5 most-cited papers?

## When to prefer this

Use this endpoint when you need to identify, disambiguate, or retrieve citation metrics for academic researchers by name, especially when you want OpenAlex-sourced bibliometric data (h-index, i10-index, total citations) and institutional affiliation without requiring an API key. Prefer this over general web search when structured, machine-readable researcher metadata is needed.

## Known failure modes

- Name too generic or common returns many ambiguous results — use maxItems to cap
- Author not indexed in OpenAlex returns empty results
- Misspelled author name returns no matches or wrong researchers
- Very new or obscure researchers may have incomplete citation data
- Network timeout or upstream OpenAlex API unavailability returns 5xx error

## How this service works

Author and researcher profile search. An author name returns matching researchers with current affiliation, publication count, total citations, h-index and i10-index, and their most-cited papers — for author lookup, disambiguation, and citation-metrics. Keyless via OpenAlex.

## Output

Returns a ranked list of up to 25 matching researcher profiles, each with current institutional affiliation, total publication count, total citation count, h-index, i10-index, and a list of their most-cited works (title, DOI, citation count).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "author name to search"
      },
      "maxItems": {
       "type": "string",
       "default": "10",
       "description": "1-25 candidate authors"
      },
      "top_works": {
       "type": "string",
       "default": "5",
       "description": "top papers per author (0-25)"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/author-and-researcher-profile-search-openalex-620cf65c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.kadec0.xyz](https://www.zero.xyz/host/api.kadec0.xyz/llms.txt)
