ToolAssay

Verify a bibliography

Verify a bibliography. For every reference: exists, resolves, retracted/corrected/flagged, title/author/year match against the registered record, and a rule-derived fabrication risk — as a signed (Ed25519, RFC 8785 canonical JSON), byte-reproducible JSON report. Input: structured references or BibTeX. No LLM; every claim carries its source and retrieval time. Tier: large, up to 75 references. NOTE: $3.00 exceeds @x402/core's default $1.00 maxAmountPerPayment; raise it (setSpendControls).

Answeringour last check, 2026-09-24
1 of 1checks answered this week
434 msmedian answer time
$3.00listed price per call
$3.00price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://aep-api.fly.dev/v1/citation-report/large

CategoryEverything else
Provider hostaep-api.fly.dev
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$3.00 434 ms

Example input (from the provider)

{
  "body": {
    "options": {
      "include_unpaywall": false,
      "strict_authors": false
    },
    "references": [
      {
        "authors": [
          "Felisa Wolfe-Simon"
        ],
        "doi": "10.1126/science.1197258",
        "id": "wolfe2011",
        "title": "A Bacterium That Can Grow by Using Arsenic Instead of Phosphorus",
        "year": 2011
      },
      {
        "authors": [
          "Min-Jun Lee",
          "Soo-Young Kim"
        ],
        "id": "lee2022",
        "title": "Generative adversarial networks for hyper-realistic avatar creation",
        "venue": "CVPR",
        "year": 2022
      }
    ]
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": false,
          "description": "Exactly one of references or bibtex.",
          "properties": {
            "bibtex": {
              "description": "A BibTeX bibliography; parsed server-side (entry key \u2192 reference id).",
              "maxLength": 262144,
              "type": "string"
            },
            "options": {
              "additionalProperties": false,
              "properties": {
                "include_unpaywall": {
                  "default": false,
                  "description": "Add open-access info per resolved reference.",
                  "type": "boolean"
                },
                "strict_authors": {
                  "default": false,
                  "description": "Require every listed author to match, not just the first.",
                  "type": "boolean"
                }
              },
              "type": "object"
            },
            "references": {
              "items": {
                "additionalProperties": false,
                "properties": {
                  "authors": {
                    "items": {
                      "maxLength": 200,
                      "type": "string"
                    },
                    "maxItems": 100,
                    "type": "array"
                  },
                  "doi": {
                    "maxLength": 300,
                    "type": "string"
                  },
                  "id": {
                    "maxLength": 120,
                    "type": "string"
                  },
                  "raw": {
                    "description": "The citation as free text; used verbatim as a bibliographic query when no title is given.",
                    "maxLength": 1000,
                    "type": "string"
                  },
                  "title": {
                    "maxLength": 500,
                    "type": "string"
                  },
                  "venue": {
                    "maxLength": 300,
                    "type": "string"
                  },
                  "year": {
                    "maximum": 2100,
                    "minimum": 1500,
                    "type": "integer"
                  }
                },
                "type": "object"
              },
              "maxItems": 200,
              "minItems": 1,
              "type": "array"
            }
          },
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON