# ArXiv BibTeX Generator

> ArXiv BibTeX Generator is a paid API for AI agents from x402.agentutility.ai, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Fetches metadata and generates a formatted BibTeX citation entry for a given arXiv paper by its ID

## Facts

- Endpoint: POST https://x402.agentutility.ai/arxiv-bibtex
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/arxiv-bibtex-generator-ab54a9b2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_0vsYRWtmaFN_mB8uDEm9O

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 arxiv-bibtex-generator-ab54a9b2 -d '<json body>'
```

Example prompt: Can you get me the BibTeX citation for arXiv paper 1706.03762 — I need to add it to my LaTeX bibliography?

## When to prefer this

Use this endpoint when you need a ready-to-paste BibTeX entry for an arXiv preprint and want to avoid manually constructing the citation. Ideal for agents assisting with literature reviews, LaTeX document preparation, or bibliography management where the arXiv paper ID is already known.

## Known failure modes

- Invalid or non-existent arXiv ID returns an error or empty result
- arXiv export API downtime causes request failure
- Malformed arXiv ID format (e.g. missing version suffix handling) may yield no match
- Payment failure via x402 results in 402 response before query is executed

## How this service works

Paid x402 endpoints organized into product clusters. USDC-settled on Base. MCP-callable. ERC-8004 identity registry agentId 47167.

## Output

Returns a JSON object containing a fully formatted BibTeX entry string, the paper's title, authors array, abstract excerpt, year, arXiv ID, auto-generated cite key (e.g. vaswani2017_arxiv170603762), DOI if available, and the source URL from export.arxiv.org.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [
      "arxiv_id"
     ],
     "properties": {
      "arxiv_id": {
       "type": "string",
       "description": "arXiv ID. New-style (e.g. '1706.03762', '1706.03762v3') or old-style ('cs.AI/0602099'). 'arXiv:' prefix is stripped."
      },
      "cite_key": {
       "type": "string",
       "description": "Override the cite key. Default is auto-derived from first author surname + year + arxiv id."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "doi": {
       "type": "null"
      },
      "year": {
       "type": "string"
      },
      "title": {
       "type": "string"
      },
      "bibtex": {
       "type": "string"
      },
      "source": {
       "type": "string"
      },
      "authors": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "abstract": {
       "type": "string"
      },
      "arxiv_id": {
       "type": "string"
      },
      "cite_key": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "doi": null,
  "year": "2017",
  "title": "Attention Is All You Need",
  "bibtex": "@article{vaswani2017_arxiv170603762,\n  author = {Ashish Vaswani and Noam Shazeer and Niki Parmar and Jakob Uszkoreit and Llion Jones and Aidan N. Gomez and Lukasz Kaiser and Illia Polosukhin},\n  title = {Attention Is All You Need},\n  year = {2017},\n  eprint = {1706.03762},\n  archivePrefix = {arXiv},\n  url = {https://arxiv.org/abs/1706.03762},\n}",
  "source": "https://export.arxiv.org",
  "authors": [
   "Ashish Vaswani",
   "Noam Shazeer",
   "Niki Parmar",
   "Jakob Uszkoreit",
   "Llion Jones",
   "Aidan N. Gomez",
   "Lukasz Kaiser",
   "Illia Polosukhin"
  ],
  "abstract": "The dominant sequence transduction models are based on…",
  "arxiv_id": "1706.03762",
  "cite_key": "vaswani2017_arxiv170603762"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/arxiv-bibtex-generator-ab54a9b2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.agentutility.ai](https://www.zero.xyz/host/x402.agentutility.ai/llms.txt)
