Discover/GetApp API
live

GetApp APIgetapp.com

Access GetApp software listings, reviews, pricing, features, integrations, and comparisons via API. 11 endpoints covering categories, products, and research.

Endpoint health
verified 6d ago
list_software_by_category
get_software_reviews
get_software_features
get_software_details
get_software_pricing
11/11 passing latest checkself-healing
Endpoints
11
Updated
21d ago

What is the GetApp API?

The GetApp API provides structured access to GetApp.com's software directory across 11 endpoints, covering categories, product details, pricing plans, user reviews, feature lists, integrations, and side-by-side comparisons. The get_software_details endpoint alone returns fields including rating_avg, num_reviews, integrations, features, pricing, and description for any listed product, identified by its URL slug.

Try it

No input parameters required.

api.parse.bot/scraper/ed9e3bb7-6a27-4301-b0dd-022b8e8add87/<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/ed9e3bb7-6a27-4301-b0dd-022b8e8add87/list_categories' \
  -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 getapp-com-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: GetApp SDK — discover categories, browse software, drill into details."""
from parse_apis.getapp_api import GetApp, SoftwareNotFound

client = GetApp()

# Browse categories — limit caps TOTAL items returned from the single page.
for cat in client.categories.list(limit=5):
    print(f"Category: {cat.name}, Listings: {cat.total_listings}")

# Construct a category by name and list its software products.
crm = client.category(name="customer-management-software/crm")
listing = crm.software(limit=1).first()
if listing:
    print(f"Top listing: {listing.name}, Rating: {listing.rating_avg}")

    # Navigate from summary to full details.
    full = listing.details()
    print(f"Full details: {full.name}, Reviews: {full.num_reviews}")

# Fetch a product by slug and drill into its features and pricing.
monday = client.softwares.get(slug="collaboration-software/a/monday-com")
feat_data = monday.features()
print(f"Features: {feat_data.total} total")
for feat in feat_data.popular[:3]:
    print(f"  {feat.name}: {feat.avg_rating}")

pricing = monday.pricing()
for plan in pricing.plans[:3]:
    print(f"  Plan: {plan.name}, Starting: {plan.starting_price}")

# Compare monday.com against another product.
comparison = monday.compare(slug2="notion")
print(f"Comparison: {comparison.title}")
for sw in comparison.listings:
    print(f"  {sw.name} — {sw.rating_avg}")

# Fetch blog research data.
blog = client.blogdatas.get()
print(f"Blog posts: {blog.posts.total}")

# Typed error: attempt to fetch a non-existent product.
try:
    client.softwares.get(slug="fake-category/a/nonexistent-xyz")
except SoftwareNotFound as exc:
    print(f"Not found: {exc.slug}")

print("Exercised: categories.list / category.software / details / features / pricing / compare / blogdatas.get / SoftwareNotFound")
All endpoints · 11 totalmissing one? ·

List all software categories available on GetApp, organized by group header. Returns category names, slugs, header groups, and listing counts. The full catalog is returned in one page.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "items": "array of category objects with name, header, cta_urls, total_listings"
  },
  "sample": {
    "data": {
      "items": [
        {
          "name": "CRM",
          "header": {
            "name": "Customer Management",
            "slug": "customer-management"
          },
          "cta_urls": {
            "detail": "/customer-management-software/crm/"
          },
          "total_listings": 1067
        }
      ]
    },
    "status": "success"
  }
}

About the GetApp API

Category and Product Discovery

The list_categories endpoint returns every software category on GetApp with its category name, header group object, cta_urls for building slugs, and total_listings count. Those slugs feed directly into list_software_by_category, which accepts a category_slug and optional page integer and returns paginated listings alongside facets for filtering and a pagination object with total counts. The same category_slug format works with get_category_leaders, which additionally returns a buyersGuide object and serpData with ranked products.

Product Detail Endpoints

Each product-level endpoint accepts a slug in the format category-path/a/product-name (e.g. collaboration-software/a/monday-com). get_software_details returns the broadest set of fields — name, description, average rating, review count, pricing structure, feature lists, and integrations array. For more focused queries: get_software_pricing returns a plans array with per-plan startingPrice, attributes, currency, and pricing categories such as free-trial or subscription. get_software_reviews returns a list of full review objects, by_rating star distribution, by_field dimension ratings, and snippets. get_software_features returns a list with per-feature name, definition, and rating, plus popular and enhanced_features arrays.

Comparisons and Alternatives

get_software_alternatives returns an alternativesData object containing the source product alongside an alternatives array with ratings, pricing, and feature overlap for each. compare_software takes two parameters — slug1 (the full product path) and slug2 (the comparison product slug, obtainable from popular_comparisons data) — and returns a compareData object with side-by-side listings, alternatives, and metadata. These two endpoints are suited for building decision-support tools or software shortlisting workflows.

Research and Integrations

get_blog_research requires no inputs and returns all GetApp research posts with topics, contentHubs, and per-post metadata. get_software_integrations returns a count and an integrations array with name, slug, logo, and rating for each connected product, making it useful for mapping software ecosystems.

Reliability & maintenanceVerified

The GetApp API is a managed, monitored endpoint for getapp.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when getapp.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 getapp.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
6d ago
Latest check
11/11 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 software shortlisting tool that pulls list_software_by_category listings filtered by facets for specific buyer segments.
  • Aggregate user sentiment across competitors using get_software_reviews by_field dimension ratings and by_rating star distributions.
  • Generate pricing comparison tables with get_software_pricing plan names, startingPrice, and attributes across multiple products.
  • Map software integration ecosystems by querying get_software_integrations for each product in a category.
  • Power a side-by-side product comparison feature using compare_software with slug1 and slug2 inputs.
  • Surface category-level buyer guidance content from get_category_leaders buyersGuide for research or content sites.
  • Index GetApp research articles and content hubs using get_blog_research post metadata and topics.
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 GetApp have an official public developer API?+
GetApp does not publish a public developer API. The data in its directory, reviews, and comparisons is not available through any documented official developer endpoint.
What does `get_software_reviews` return beyond a simple star rating?+
get_software_reviews returns a list of full review objects, a by_rating map that breaks down counts per star level, a by_field object with dimension-level ratings (e.g. ease of use, customer support), snippets for short review previews, and an overall rating_avg. The total field gives the complete review count for the product.
How does slug construction work across endpoints?+
Product slugs follow the pattern category-path/a/product-name (e.g. collaboration-software/a/monday-com). The category portion of slugs can be obtained from the cta_urls.detail field returned by list_categories. For compare_software, slug2 accepts only the short product slug (e.g. notion) rather than the full path.
Does the API expose vendor-side data such as claimed profiles, sponsored rankings, or advertising status for listings?+
Not currently. The API returns organic listing data including ratings, reviews, features, pricing, and integrations. It does not expose vendor claim status, sponsorship flags, or ad placement metadata. You can fork this API on Parse and revise it to add an endpoint targeting that data if it appears in the source pages.
Is there a way to search for software by keyword rather than browsing by category?+
Not currently. Discovery is category-driven via list_categories and list_software_by_category, with facets available for filtering within a category. Freetext keyword search across the full product index is not exposed. You can fork this API on Parse and revise it to add a search endpoint.
Page content last updated . Spec covers 11 endpoints from getapp.com.
Related APIs in Reviews RatingsSee all →