Discover/Toolify API
live

Toolify APItoolify.ai

Access AI tools directory data from Toolify.ai: search tools, trending rankings, categories, tool details with FAQs, and top articles via 7 endpoints.

This API takes change requests — .
Endpoint health
verified 2d ago
search_tools
get_tools_by_category
get_trending_tools
get_new_tools
get_tool_detail
7/7 passing latest checkself-healing
Endpoints
7
Updated
28d ago

What is the Toolify API?

The Toolify.ai API exposes 7 endpoints covering the full AI tools directory at toolify.ai, including search, trending rankings, category browsing, and article listings. The get_tool_detail endpoint returns name, description, website URL, aggregate rating, tags, structured product info sections, and a FAQ array for any tool identified by its handle. Use search_tools to find handles by keyword, then feed them directly into detail lookups.

Try it
Search keyword (e.g. 'chatbot', 'image generator')
api.parse.bot/scraper/d9b9f4bc-13fc-40c1-86e5-9bbf2377d680/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/d9b9f4bc-13fc-40c1-86e5-9bbf2377d680/search_tools?query=chatbot' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace toolify-ai-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: Toolify AI Tools API — discover, search, and drill into AI tools."""
from parse_apis.toolify_ai_tools_api import Toolify, ToolNotFound

client = Toolify()

# Browse trending tools by monthly traffic
for tool in client.trendingtools.list(limit=3):
    print(tool.name, tool.monthly_visits, tool.tags)

# Search for tools and drill into the first result's full details
result = client.tools.search(query="image generator", limit=1).first()
if result:
    detail = result.details()
    print(detail.name, detail.rating, detail.tags)

# Construct a category and list its tools
category = client.category(handle="ai-chatbot")
for t in category.tools(limit=3):
    print(t.name, t.description)

# Browse category groups to see the full taxonomy
for group in client.categories.list(limit=2):
    print(group.title, [c.name for c in group.values])

# Error handling: catch a missing tool gracefully
try:
    client.tools.get(handle="nonexistent-tool-xyz-999")
except ToolNotFound as exc:
    print(f"Tool not found: {exc.handle}")

print("exercised: trendingtools.list / tools.search / details / category.tools / categories.list / tools.get")
All endpoints · 7 totalmissing one? ·

Full-text search across the AI tools directory. Returns matching tools with handle, name, description, and URL. Deduplicates results by handle and caps at 50.

Input
ParamTypeDescription
queryrequiredstringSearch keyword (e.g. 'chatbot', 'image generator')
Response
{
  "type": "object",
  "fields": {
    "tools": "array of tool objects with handle, name, description, and url",
    "total": "integer total number of unique matching tools"
  },
  "sample": {
    "data": {
      "tools": [
        {
          "url": "https://www.toolify.ai/tool/elbot",
          "name": "eLBot",
          "handle": "elbot",
          "description": "Next-generation AI chatbot for instant answers and virtual assistance."
        }
      ],
      "total": 226
    },
    "status": "success"
  }
}

About the Toolify API

Tool Discovery and Search

The search_tools endpoint accepts a query string (e.g. 'image generator', 'chatbot') and returns a list of matching tool objects — each with handle, name, description, and url — plus a total count of unique matches. Handles returned here are the slugs used to drive get_tool_detail and get_tools_by_category lookups downstream.

get_trending_tools returns up to 50 tools ranked by monthly traffic, with each object including monthly_visits, tags, handle, website, and description. get_new_tools returns the 10 most recently added tools with their categories array, making it straightforward to track what has been listed lately.

Category Navigation

get_category_list returns the full category tree: a groups array where each group contains a title, handle, and values array of subcategories, alongside a flat all_category list that pairs each subcategory handle with its name and tool_count. The integer category_count field gives the total number of categories. Pass any subcategory handle from this response into get_tools_by_category to retrieve up to 50 tools in that category, each with name, handle, website, and description.

Tool Detail and Articles

get_tool_detail accepts a tool handle and returns a detailed object: name, description, website_url, rating (string or null), tags, a product_info object mapping section keys to content strings, and a faq array of question/answer pairs sourced from the tool's listing page. get_top_articles returns paginated article metadata — handle, title, page_description, image, and timestamps — with total, last_page, and current_page fields to support pagination.

Reliability & maintenanceVerified

The Toolify API is a managed, monitored endpoint for toolify.ai — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when toolify.ai changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official toolify.ai API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
7/7 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Build an AI tools comparison site using get_tool_detail to pull ratings, tags, and product info for side-by-side views
  • Track newly launched AI tools by polling get_new_tools daily and logging the categories and handle fields
  • Monitor trending AI tools by category using get_trending_tools and filtering on the tags field
  • Populate a category-browsing UI from get_category_list groups and drill down with get_tools_by_category
  • Index AI tool FAQs from get_tool_detail to build a searchable Q&A dataset across hundreds of tools
  • Aggregate AI industry articles for a newsletter digest using get_top_articles with its title, page_description, and timestamp fields
  • Search competitor tooling landscape by keyword via search_tools and analyzing the resulting description and url fields
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Toolify.ai have an official developer API?+
Toolify.ai does not currently publish an official public developer API. This API surfaces the same directory data programmatically.
What does `get_tool_detail` return beyond basic metadata?+
get_tool_detail returns product_info — an object where each key is a named section from the tool's listing page mapped to its content string — plus a faq array of question/answer pairs and an aggregate rating value (or null if none is listed). This goes beyond the name, description, and URL available in search or trending responses.
Does `get_trending_tools` support filtering by category or time period?+
No filter parameters are currently supported on get_trending_tools. It returns up to 50 tools ranked by overall monthly traffic. If you need trending tools scoped to a specific category, you can retrieve the full list and filter client-side on the tags field. You can also fork this API on Parse and revise it to add a category filter parameter pointing to the relevant endpoint.
Does the API expose user reviews or individual review text for tools?+
Not currently. The get_tool_detail endpoint returns an aggregate rating value but does not return individual user review text or reviewer metadata. You can fork this API on Parse and revise it to add an endpoint targeting individual review data from each tool's listing page.
How does pagination work for articles?+
get_top_articles returns current_page, last_page, and total in every response. The endpoint does not currently accept a page number parameter — it returns the first page. You can fork this API on Parse and revise it to add a page input parameter to traverse the full article archive.
Page content last updated . Spec covers 7 endpoints from toolify.ai.
Related APIs in Developer ToolsSee all →
theresanaiforthat.com API
Search and discover AI tools across different tasks, get detailed information about specific tools, browse available deals, and stay updated on the latest tools. Find the perfect AI solution for your needs by filtering by task category or checking featured and trending tools.
agent.ai API
Search and discover AI agents in the Agent.ai marketplace by filtering through categories and tags, then view detailed agent information and builder profiles. Find the perfect AI solution for your needs by browsing available agents, exploring builder credentials, and comparing agent capabilities across different categories.
parsepad.com API
Access data from parsepad.com.
artificialanalysis.ai API
Compare and rank LLM models and providers across performance benchmarks, then dive into detailed specifications for any model to find the best fit for your needs. Discover performance metrics for specialized AI systems handling speech, images, and video, plus benchmark data for different hardware configurations.
anything.com API
Retrieve blog posts and organize them by category from Anything.com's AI app builder platform. Use this to access detailed content about AI development, tutorials, and platform updates directly from their official blog.
explodingtopics.com API
Discover rapidly growing trends, emerging startups, and top-performing websites by filtering through trending topics by category and volatility. Programmatically access detailed trend analysis, related topics, blog coverage, and curated highlights to stay ahead of market movements.
lmarena.ai API
lmarena.ai API
alternativeto.net API
Search for software applications, discover alternative tools to replace your current apps, and explore detailed information about programs across different categories and platforms. Find the perfect software match by browsing apps, comparing alternatives, and filtering by your preferred operating system.