开放 API 供开发者集成. Base URL: https://aitoolsnav.com
需要认证的接口使用 HTTP-only Cookie (auth-token)。登录后浏览器自动携带。
/api/favorites需认证Get user favorites
/api/favorites需认证Toggle favorite status
{ toolId: string }/api/reviewsGet tool reviews (?toolId=xxx)
/api/reviews需认证Submit a review
{ toolId, rating (1-5), comment }/api/upvoteUpvote a tool
{ toolId }/api/promptsGet prompts list (?category=xxx)
/api/prompts需认证Submit a prompt
{ title, content, description?, category?, toolId? }/api/discussionsGet discussions (?toolId=xxx)
/api/discussions需认证Post a discussion
{ toolId, title, content }/api/tools/submitSubmit a new tool
{ name, website, tagline, description?, pricing?, submitterEmail? }/rss.xmlRSS 2.0 feed
/api/subscribeSubscribe to newsletter
{ email }// Get all prompts
const res = await fetch("https://aitoolsnav.com/api/prompts")
const { prompts } = await res.json()
// Submit a review (requires login)
await fetch("https://aitoolsnav.com/api/reviews", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ toolId: "...", rating: 5, comment: "Great tool!" }),
credentials: "include",
})
// RSS Feed
// GET https://aitoolsnav.com/rss.xml