Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
wentorai avatar

Wentor Api

  • 9 installs
  • 849 repo stars
  • Updated August 1, 2026
  • wentorai/research-claw

Helps with ai & agent building tasks during AI-assisted development.

About

wentor api is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • wentor api
  • AI & Agent Building
  • AI-coding skill

Wentor Api by the numbers

  • 9 all-time installs (skills.sh)
  • Ranked #12,152 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/wentorai/research-claw --skill wentor-api

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs9
repo stars849
Last updatedAugust 1, 2026
Repositorywentorai/research-claw

What it does

Helps with ai & agent building tasks during AI-assisted development.

Files

SKILL.mdMarkdownGitHub ↗

Wentor Academic API

Three services for academic research, accessible via the Wentor platform API.

Base URL: https://wentor.ai/api/v1/academic Auth: Bearer token from your Wentor dashboard → API Token section.

All endpoints require: 1. A valid Wentor API token (Authorization: Bearer <token>) 2. The corresponding service enabled in your dashboard

---

1. wentor_qa — Paper Q&A Search

Natural-language paper search. Ask a question, get relevant papers.

  • Quota: 20 requests/day
  • Rate limit: 5 requests/minute

Request

POST /api/v1/academic/qa
Content-Type: application/json
Authorization: Bearer <token>
{ "query": "attention mechanism transformer", "size": 10, "year": [2024, 2025] }
FieldTypeRequiredDefaultDescription
querystringyesNatural language question (2–500 chars)
sizeintno10Results per page (1–50)
offsetintno0Pagination offset
sortstringnorelevancerelevance, citations, or year
yearint[]nonullFilter by publication year(s)
sci_onlyboolnofalseOnly return SCI-indexed papers

Response: { items: [{ id, title, title_zh, doi, ... }], total }.

---

2. wentor_search — Structured Paper Search

Search papers by specific fields: title, keyword, author, organization, venue.

  • Quota: 100 requests/day
  • Rate limit: 10 requests/minute

Request

GET /api/v1/academic/search
Authorization: Bearer <token>
ParamTypeRequiredDefaultDescription
titlestringat least onePaper title (partial match)
keywordstringat least oneTopic keyword
authorstringat least oneAuthor name
orgstringat least oneInstitution/organization
venuestringat least oneJournal or conference name
pageintno0Page number (0-indexed)
sizeintno10Results per page (1–50)
sortstringnorelevancerelevance, citations, or year

At least one of title, keyword, author, org, or venue is required.

Response: { items: [{ id, title, title_zh, doi, ... }], total, page, size }.

---

3. wentor_plot — Academic Figure Generation

Generate academic figures from text descriptions. Text-to-image only (no image editing).

  • Quota: 10 requests/day
  • Rate limit: 2 requests/minute

Request

POST /api/v1/academic/plot
Content-Type: application/json
Authorization: Bearer <token>
{ "prompt": "A bar chart comparing BLEU scores of 5 MT models on WMT-2023" }
FieldTypeRequiredDescription
promptstringyesFigure description in natural language (2–2000 chars)

Response: { image: "data:image/png;base64,..."|null, text: string|null, prompt: string }. image is a base64-encoded PNG data URI. null if generation failed.

---

Error Codes

HTTPCodeMeaning
401UNAUTHORIZEDMissing or invalid API token
400MISSING_SEARCH_CRITERIANo search field provided (wentor_search only)
400INVALID_PARAMSInvalid search parameters (upstream)
403SERVICE_NOT_ENABLEDEnable the service in your dashboard first
422validation errorInvalid field value (e.g., query too short)
429QUOTA_EXCEEDEDDaily quota exhausted, resets at midnight UTC
429RATE_LIMITEDToo many requests per minute, slow down
429UPSTREAM_RATE_LIMITEDUpstream service rate limited, retry later
502UPSTREAM_ERRORUpstream service error
503UPSTREAM_UNAVAILABLEUpstream service temporarily unavailable

Usage Tips

  • Use wentor_qa when you have a natural-language research question and want to discover relevant papers.
  • Use wentor_search when you know specific metadata (author name, conference, institution) and want precise results.
  • Use wentor_plot to generate publication-ready figures. Be specific in your prompts — include chart type, data description, axis labels, and visual style preferences.
  • Combine wentor_qa + wentor_plot: search for papers first, then visualize findings as figures.
  • Check your remaining quota on the Wentor dashboard under the Services section.

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.