# AgentsTools Scholar Search

> AgentsTools Scholar Search is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Search scholarly literature by keyword or topic and return a ranked list of academic works with core metadata, powered by OpenAlex.

## Facts

- Endpoint: GET https://api.agentstools.dev/scholar/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstools-scholar-search-bbf2f092
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T3oLio_MbZdg0qf9WFuee

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 agentstools-scholar-search-bbf2f092
```

Example prompt: Search the scholarly literature for papers on 'transformer attention mechanisms in NLP', limit to the top 10 results from 2018 to 2024, open-access only, and filter by the concept 'natural language processing'.

## When to prefer this

Use this endpoint as a cheap first step when you need to discover relevant academic papers by keyword or topic before fetching full details. Prefer this over /scholar/paper when you don't yet have a specific paper ID and need to survey the landscape. Ideal for literature reviews, research discovery, or finding open-access papers within a date range or from a specific institution.

## Known failure modes

- Empty result set if query terms are too niche or misspelled
- No results when year_from/year_to range excludes all matching works
- Institution or concept name not recognized by OpenAlex returns empty or unfiltered results
- query parameter missing — required field causes 400-level error
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Search the scholarly literature by keyword or topic and get a ranked list of works with core metadata. Optional filters for year range, open-access only, concept and institution. Powered by OpenAlex. A cheap first step before /scholar/paper.

## Output

A ranked list of academic works with core metadata including titles, authors, publication years, DOIs, open-access status, citation counts, and concept tags — up to the requested limit (default 10, max 50).

## 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": [
      "query"
     ],
     "properties": {
      "limit": {
       "type": "integer",
       "maximum": 50,
       "minimum": 1,
       "description": "Max items to return, default 10"
      },
      "query": {
       "type": "string",
       "description": "Keyword or topic search terms"
      },
      "concept": {
       "type": "string",
       "description": "Filter by a subject concept name"
      },
      "oa_only": {
       "type": "boolean",
       "description": "Restrict to open-access works when true"
      },
      "year_to": {
       "type": "integer",
       "description": "Latest publication year to include"
      },
      "year_from": {
       "type": "integer",
       "description": "Earliest publication year to include"
      },
      "institution": {
       "type": "string",
       "description": "Filter by an author institution name"
      }
     }
    }
   },
   "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/agentstools-scholar-search-bbf2f092/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
