Discover/Not_yet_determined API
live

Not_yet_determined APInot_yet_determined.com

Access n8n workflow templates via API. Search by keyword or category, get full workflow JSON with nodes and connections, find similar templates, and list by creator.

Endpoint health
verified 4d ago
get_template_details
get_user_templates
list_all_templates
search_templates
get_similar_templates
5/5 passing latest checkself-healing
Endpoints
5
Updated
26d ago

What is the Not_yet_determined API?

The n8n Templates API exposes 5 endpoints for searching, browsing, and retrieving workflow templates from the n8n template library. Use search_templates to query by keyword and category, or get_template_details to fetch a full workflow JSON including every node, connection, and analytics field for a specific template ID. The API also covers per-user template listings and category-based similarity matching.

Try it
Page number for pagination (1-based).
Number of results per page.
Search keyword to filter templates by name or description.
Filter by category name (e.g. 'Engineering', 'AI', 'Marketing', 'Sales').
api.parse.bot/scraper/95a44f30-07ab-4697-93f1-75aded2038fe/<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/95a44f30-07ab-4697-93f1-75aded2038fe/search_templates?page=1&rows=5&query=AI&category=AI' \
  -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 n8n-templates-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: n8n Templates SDK — search, drill-down, similar, user templates."""
from parse_apis.n8n_templates_api import N8nTemplates, Rows, TemplateNotFound

client = N8nTemplates()

# Search for AI-related templates, capped at 3 results.
for template in client.templates.search(query="AI", limit=3):
    print(template.name, template.total_views)

# Drill into the first result and explore its similar templates.
template = client.templates.search(query="automation", limit=1).first()
if template:
    for similar in template.similar(limit=3):
        print(similar.name, similar.total_views)

# Browse a specific user's published templates.
jan = client.user("jan")
for tmpl in jan.templates(limit=3):
    print(tmpl.name, tmpl.created_at)

# List newest templates in the catalog.
try:
    newest = client.templates.list(limit=1).first()
    if newest:
        print(newest.name, newest.description[:80])
except TemplateNotFound as exc:
    print(f"Template not found: {exc}")

print("exercised: templates.search / templates.list / template.similar / user.templates")
All endpoints · 5 totalmissing one? ·

Full-text search over n8n workflow templates with optional keyword and category filters. Returns paginated results sorted by creation date (newest first). Each result includes template metadata (id, name, views, description, nodes) and creator info. Paginates via integer page counter; the total matching count is in totalWorkflows.

Input
ParamTypeDescription
pageintegerPage number for pagination (1-based).
rowsintegerNumber of results per page.
querystringSearch keyword to filter templates by name or description.
categorystringFilter by category name (e.g. 'Engineering', 'AI', 'Marketing', 'Sales').
Response
{
  "type": "object",
  "fields": {
    "workflows": "array of workflow template summaries including id, name, totalViews, user, description, createdAt, and nodes",
    "totalWorkflows": "integer total number of matching templates"
  },
  "sample": {
    "data": {
      "workflows": [
        {
          "id": 6270,
          "name": "Build Your First AI Agent",
          "user": {
            "id": 91332,
            "name": "Lucas Peyrin",
            "username": "lucaspeyrin",
            "verified": true
          },
          "nodes": [
            {
              "id": 1119,
              "displayName": "AI Agent"
            }
          ],
          "createdAt": "2025-07-22T12:14:21.343Z",
          "totalViews": 99862,
          "description": "How it works..."
        }
      ],
      "totalWorkflows": 4966
    },
    "status": "success"
  }
}

About the Not_yet_determined API

Search and Browse Templates

The search_templates endpoint accepts a query string, a category name (such as 'AI', 'Engineering', or 'Marketing'), and pagination controls (page, rows). It returns an array of workflows, each carrying id, name, totalViews, user, description, createdAt, and a nodes array — enough to render a template card and understand what services a workflow touches. The totalWorkflows integer tells you how many results match your query across all pages.

The list_all_templates endpoint iterates through the full catalog sorted newest-first. Pass a limit to cap the result set or omit it to walk the entire catalog. The response returns count (templates in this response), total (full catalog size), and the same workflows array shape as search results. This is useful for building indexes or monitoring when new templates appear.

Full Workflow Details and Similarity

get_template_details takes a numeric template_id and returns the complete template object: id, name, views, totalViews, createdAt, description, the full workflow object with nodes and connections, user info, and categories. The workflow field contains the actual n8n workflow JSON, which you can import directly into an n8n instance.

get_similar_templates accepts a template_id and an optional limit. It resolves the template's category, then returns an array of other templates in that same category along with a category_id field identifying which category drove the match. get_user_templates accepts a username and optional limit, returning all published templates from that creator — useful for browsing work by a specific contributor.

Reliability & maintenanceVerified

The Not_yet_determined API is a managed, monitored endpoint for not_yet_determined.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when not_yet_determined.com 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 not_yet_determined.com 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
4d ago
Latest check
5/5 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
  • Index the full n8n template catalog and keep a local mirror synced by polling list_all_templates for new createdAt values.
  • Build a template search UI that lets users filter by category and keyword using search_templates.
  • Auto-import workflow JSON from get_template_details into a self-hosted n8n instance via the n8n REST API.
  • Generate 'you might also like' suggestions in a workflow tool by querying get_similar_templates with the active template's ID.
  • Audit which node types are most commonly used by scanning the nodes array across all templates returned by list_all_templates.
  • Retrieve all templates published by a specific contributor using get_user_templates and display them on a profile page.
  • Track popularity trends over time by storing totalViews from repeated search_templates or get_template_details calls.
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 n8n have an official developer API for its template library?+
n8n does not publish a documented public REST API specifically for its community template library. The n8n core product has a REST API for managing workflows on a self-hosted or cloud instance (documented at docs.n8n.io/api), but that is separate from the template catalog this API covers.
What does `get_template_details` return beyond what the search results include?+
get_template_details returns the full workflow object containing the complete nodes and connections arrays — the actual importable workflow JSON. Search and list results return only a summary nodes array used for display. get_template_details also returns per-template category assignments and both views and totalViews analytics fields.
How does `get_similar_templates` determine which templates are 'similar'?+
Similarity is category-based. The endpoint fetches the primary category of the given template_id, then queries for other templates in that same category. The category_id field in the response shows which category was used. Templates are not matched by node type, description embedding, or any semantic signal.
Does the API expose template version history or changelogs?+
Not currently. The API returns a single createdAt timestamp and the current workflow JSON per template; there is no revision history or diff data. You can fork this API on Parse and revise it to add an endpoint that tracks version changes if the source exposes that data.
Can I filter `search_templates` by node type — for example, to find all templates using the Slack node?+
The search_templates endpoint filters by query keyword and category name only; there is no dedicated node-type filter parameter. The nodes array is present in each result, so you can filter client-side after fetching. You can fork this API on Parse and revise it to add server-side node-type filtering as an additional parameter.
Page content last updated . Spec covers 5 endpoints from not_yet_determined.com.
Related APIs in Developer ToolsSee all →
framer.com API
Search and browse thousands of website templates from the Framer Marketplace to find designs for portfolios, SaaS sites, agencies, and more. Get detailed information about specific templates to help you choose the perfect design before creating your site on Framer.
elements.envato.com API
Search and browse millions of creative assets from Envato Elements, including stock photos, videos, music, fonts, and templates across all categories. Get detailed information about specific items, pricing plans, and discover new content through keyword search and category browsing.
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.
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.
mobbin.com API
Search and explore thousands of UI/UX design flows from Mobbin across mobile and web platforms, with detailed screenshots and categorized collections. Discover specific flow details, browse by category, and find design inspiration tailored to your needs.
toolify.ai API
Search and browse premium .ai domain names available on the Toolify marketplace, filtering by keywords, categories, prices, and domain attributes to find the perfect domain for your project. Explore curated domain listings organized by category to discover valuable .ai domains suited to your needs.
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.
blenderkit.com API
Search BlenderKit's extensive library of 3D models, materials, scenes, HDRs, and brushes, complete with detailed asset information and category browsing. Retrieve intelligent search suggestions and explore organized collections to discover assets across any creative domain.