Discover/AlternativeTo API
live

AlternativeTo APIalternativeto.net

Search apps, find software alternatives, and browse categories and platforms on AlternativeTo via a structured JSON API with 6 endpoints.

Endpoint health
verified 5d ago
get_app_alternatives
browse_apps
get_categories
search_apps
get_app_details
6/6 passing latest checkself-healing
Endpoints
6
Updated
21d ago

What is the AlternativeTo API?

The AlternativeTo API provides access to AlternativeTo's software directory through 6 endpoints, letting you search apps by keyword, retrieve detailed metadata for individual titles, and pull paginated lists of alternatives. The get_app_details endpoint returns fields like licenseCost, platforms, reviewCount, tagLine, and likes for any app slug, while get_app_alternatives supports filtering by platform and license type.

Try it
The search query string (e.g. 'video-editor', 'note-taking', 'whatsapp').
api.parse.bot/scraper/aa86e0de-4fa6-4bb5-b463-590678d77f76/<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/aa86e0de-4fa6-4bb5-b463-590678d77f76/search_apps?query=video-editor' \
  -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 alternativeto-net-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: AlternativeTo SDK — discover apps, compare alternatives, browse by category."""
from parse_apis.alternativeto_api import AlternativeTo, AppNotFound

client = AlternativeTo()

# Search for video editors — limit caps total items fetched.
for app in client.appsummaries.search(query="video-editor", limit=3):
    print(app.name, app.likes)

# Drill into the first result's full details via .details()
summary = client.appsummaries.search(query="vlc", limit=1).first()
if summary:
    detail = summary.details()
    print(detail.name, detail.license_cost, detail.review_count)

# Browse alternatives for a known app using constructible access.
vlc = client.app(slug="vlc-media-player")
for alt in vlc.alternatives.list(platform="windows", limit=3):
    print(alt.name, alt.description[:80])

# List available categories.
for cat in client.categories.list(limit=5):
    print(cat.name, cat.slug)

# Browse apps in a category.
for app in client.appsummaries.browse(category="social", limit=3):
    print(app.name, app.likes)

# Typed error handling for a nonexistent app.
try:
    bad = client.app(slug="nonexistent-app-xyz-999")
    bad.alternatives.list(limit=1).first()
except AppNotFound as exc:
    print(f"App not found: {exc.app_slug}")

print("exercised: search / details / alternatives.list / categories.list / browse / AppNotFound")
All endpoints · 6 totalmissing one? ·

Full-text search over AlternativeTo's app directory by name or keyword. Returns a list of matching apps with basic metadata. No pagination; returns up to ~15 results per query.

Input
ParamTypeDescription
queryrequiredstringThe search query string (e.g. 'video-editor', 'note-taking', 'whatsapp').
Response
{
  "type": "object",
  "fields": {
    "apps": "array of app summary objects each containing id, name, slug, url, description, likes, tags",
    "query": "string, the search query that was used"
  },
  "sample": {
    "data": {
      "apps": [
        {
          "id": "acdbd0e0-09fe-4745-afba-e609f1373b7f",
          "url": "https://alternativeto.net/software/olive-video-editor/",
          "name": "Olive Video Editor",
          "slug": "olive-video-editor",
          "tags": [],
          "likes": 149,
          "description": "Olive is a free non-linear video editor aiming to provide a fully-featured alternative to high-end professional video editing software."
        }
      ],
      "query": "video-editor"
    },
    "status": "success"
  }
}

About the AlternativeTo API

Search and Browse

The search_apps endpoint accepts a free-text query string and returns up to roughly 15 matching apps, each with an id, name, slug, url, description, likes, and tags. Slugs returned here are the input currency for other endpoints. browse_apps lets you page through the full directory or scope results to a specific category slug, and filter by platform and license — making it suitable for building curated software lists or category indexes.

App Detail and Alternatives

get_app_details accepts an app_slug and returns a richer object: a UUID id, full description, tagLine, licenseCost (e.g. Free, Paid, Freemium), reviewCount, and a platforms array where each element has platformType, name, and urlName. get_app_alternatives pages through competing tools for any given app, with optional platform and license filters and roughly 12 results per page.

Reference Lookups

Two enumeration endpoints anchor the filtering system. get_categories returns the full category list as name/slug pairs — valid values for browse_apps's category param. get_platforms returns every platform with its text display name, urlName filter slug, and an app count, so you know which platform values are populated before issuing a filtered query.

Reliability & maintenanceVerified

The AlternativeTo API is a managed, monitored endpoint for alternativeto.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when alternativeto.net 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 alternativeto.net 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
5d ago
Latest check
6/6 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 a 'find alternatives to X' widget using get_app_alternatives filtered by platform and license type
  • Generate a software comparison table by calling get_app_details for multiple slugs to compare licenseCost, reviewCount, and platforms
  • Populate a category-based software directory by paging through browse_apps with a category slug
  • Detect which platforms an app supports by reading the platforms array from get_app_details
  • Identify open-source alternatives in a category by combining browse_apps with license=opensource
  • Build an autocomplete or search feature for software names using search_apps keyword queries
  • Enumerate all available categories and platforms using get_categories and get_platforms to drive dynamic filter UIs
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 AlternativeTo have an official developer API?+
AlternativeTo does not publish an official public developer API. There is no documented REST or GraphQL interface listed on their site for third-party use.
What does `get_app_alternatives` return, and how can I filter it?+
get_app_alternatives returns a paginated array of app summary objects (id, name, slug, url, description, likes, tags) for apps listed as alternatives to the given app_slug. You can narrow results using the platform param (e.g. windows, linux, android) and the license param (e.g. opensource, free, commercial). Page size is approximately 12 items; use the page param to iterate.
Does the API return user reviews or review text for apps?+
Not currently. get_app_details exposes reviewCount as an integer, but individual review content, reviewer names, and ratings text are not returned by any endpoint. You can fork this API on Parse and revise it to add a review-detail endpoint.
Does `get_app_details` include pricing or version history data?+
It returns licenseCost (a string such as Free, Paid, or Freemium) but does not include specific pricing tiers, version numbers, release dates, or changelogs. The API covers identity fields, platform support, description, likes, and review counts. You can fork it on Parse and revise to add a version or pricing endpoint if the source exposes that data.
How do I get valid values for the `platform` and `category` filter params?+
get_platforms returns the full platform list with each entry's urlName field — use that value as the platform param in browse_apps and get_app_alternatives. Similarly, get_categories returns category slug values to pass as the category param in browse_apps. Calling these two endpoints first is the reliable way to avoid invalid filter values.
Page content last updated . Spec covers 6 endpoints from alternativeto.net.
Related APIs in Developer ToolsSee all →
getapp.com API
Search and compare software solutions while accessing detailed information like pricing, features, integrations, reviews, and alternatives all in one place. Get category leaders, read industry research from their blog, and make informed software decisions based on comprehensive data.
alternate.be API
Search for products on Alternate Belgium and instantly access live prices, stock availability, technical specifications, customer reviews, and current deals across their entire catalog. Browse their complete category structure to find exactly what you need and compare products before making a purchase decision.
g2.com API
Search G2.com to discover software products, compare pricing and categories, and read customer reviews all in one place. Get detailed product overviews and ratings to make informed decisions about business software.
download.com API
Search and discover software across CNET's download library, filter by platform and category, and access detailed product specs and download links. Find the latest releases and most popular downloads to quickly locate the software you need.
capterra.com API
capterra.com API
app.appfigures.com API
Track top-performing iOS apps across categories with detailed insights on rankings, monetization models, ratings, revenue estimates, and user demographics. Monitor app performance metrics and discover trending applications by category to stay informed about the competitive app market landscape.
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.
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.