Discover/Envato API
live

Envato APIelements.envato.com

Access Envato Elements categories, search creative assets by keyword, retrieve item details, and get pricing info via 5 structured REST endpoints.

Endpoint health
verified 21h ago
get_pricing_plans
get_all_categories
get_items_by_category
get_item_detail
search_items
5/5 passing latest checkself-healing
Endpoints
5
Updated
22d ago

What is the Envato API?

This API exposes 5 endpoints for browsing and searching the Envato Elements catalog of creative assets, covering stock video, music, fonts, templates, photos, and more. Call get_all_categories to retrieve the 14 top-level category paths, then pass those paths into search_items or get_items_by_category to retrieve paginated item listings. Each item record includes id, title, author, type, and image URL, with full metadata available through get_item_detail.

Try it

No input parameters required.

api.parse.bot/scraper/6c75102d-9455-4f70-b3ef-95da1a5209d0/<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/6c75102d-9455-4f70-b3ef-95da1a5209d0/get_all_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 elements-envato-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: Envato Elements SDK — browse categories, search items, get details."""
from parse_apis.envato_elements_api import EnvatoElements, Sort, ItemNotFound

client = EnvatoElements()

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

# Search for logo templates in graphic-templates category
item = client.category("/graphic-templates").search(query="logo", sort_by=Sort.POPULAR, limit=1).first()
if item:
    print(item.title, item.author, item.type)

    # Get full details for the top result
    try:
        detail = item.details()
        print(detail.title, detail.item_type, detail.is_currently_free)
        print("Tags:", detail.tags)
        for crumb in (detail.crumbs or [])[:3]:
            print(crumb.label, crumb.url)
    except ItemNotFound as exc:
        print(f"Item gone: {exc}")

# Browse latest fonts
for font in client.category("/fonts").items(sort_by=Sort.LATEST, limit=3):
    print(font.title, font.author, font.url)

# Get pricing info
pricing = client.pricings.get()
print(pricing.note, pricing.url)

print("exercised: categories.list / category.search / item.details / category.items / pricings.get")
All endpoints · 5 totalmissing one? ·

Returns all top-level item categories with their URL paths. Each category path can be passed to get_items_by_category or search_items. The list is stable (14 categories covering video templates, stock video, music, sound effects, graphic templates, graphics, presentation templates, photos, fonts, add-ons, web templates, CMS templates, 3D, and WordPress).

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "categories": "array of category objects, each with 'name' (string) and 'path' (string URL path)"
  },
  "sample": {
    "data": {
      "categories": [
        {
          "name": "Video Templates",
          "path": "/video-templates"
        },
        {
          "name": "Stock Video",
          "path": "/stock-video"
        },
        {
          "name": "Music",
          "path": "/audio"
        },
        {
          "name": "Graphic Templates",
          "path": "/graphic-templates"
        },
        {
          "name": "Photos",
          "path": "/photos"
        },
        {
          "name": "Fonts",
          "path": "/fonts"
        }
      ]
    },
    "status": "success"
  }
}

About the Envato API

Category and Search Coverage

The get_all_categories endpoint returns 14 top-level categories — including video templates, stock video, music, sound effects, graphic templates, photos, fonts, add-ons, web templates, CMS templates, 3D, and WordPress — each with a name and path field. These path values feed directly into get_items_by_category and search_items, both of which require a category_path parameter. Category browsing supports sort_by values of popular or latest along with integer page numbers.

Item Listings and Search Results

Both browse and search endpoints return an items array where each object carries id, title, author, author_url, url, type, and image. The pagination object includes currentPage, totalPages, firstPageUrl, nextPageUrl, previousPageUrl, displayedPages, and perPage, making it straightforward to walk through large result sets. get_items_by_category also returns a refinements object with filter categories and options for narrowing results, and a trending_searches array. search_items returns trending_searches as related term objects with variant, label, and url fields, or null when unavailable.

Item Detail

The get_item_detail endpoint accepts an item_path string (e.g. /high-quality-logo-3d-mockup-PVP7AZ3) and returns a full metadata object: id, title, author, description, tags, categories, itemAttributes, resolution, and image URLs. It also includes description_html for formatted content, a crumbs breadcrumb array, related_items, similar_items_url, and author_other_items — useful for discovery and recommendation features.

Pricing Plans

The get_pricing_plans endpoint returns a url pointing to the Envato Elements pricing page and a note field describing the available subscription tiers. It provides a lightweight way to surface current plan descriptions without scraping the pricing page manually.

Reliability & maintenanceVerified

The Envato API is a managed, monitored endpoint for elements.envato.com — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when elements.envato.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 elements.envato.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
21h 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
  • Build a creative asset discovery tool that lets users browse by category using paths from get_all_categories.
  • Power a font or template search feature by querying search_items with a keyword and /fonts or /graphic-templates as category_path.
  • Populate an asset detail page by calling get_item_detail with an item_path to retrieve tags, resolution, and itemAttributes.
  • Surface trending search terms to users by reading the trending_searches array from get_items_by_category.
  • Build a 'more from this author' recommendation widget using the author_other_items array from get_item_detail.
  • Display related and similar asset suggestions by combining related_items and similar_items_url from a detail response.
  • Show current Envato Elements subscription plan info in an onboarding flow using the url and note from get_pricing_plans.
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 Envato Elements have an official developer API?+
Envato has a public API for its Envato Market platform (market.envato.com), documented at build.envato.com. That API does not cover the Envato Elements subscription catalog. This Parse API provides access to Elements-specific data including category browsing, keyword search, item details, and pricing.
What does `get_item_detail` return beyond what search results include?+
get_item_detail adds fields not present in listing responses: description, tags, categories, itemAttributes, resolution, description_html, breadcrumb crumbs, related_items, similar_items_url, and author_other_items. Search and browse endpoints return only the core listing fields: id, title, author, author_url, url, type, and image.
Can I filter search results by tags, resolution, or file format?+
The search_items endpoint accepts query, category_path, sort_by, and page — there are no dedicated filter parameters for tags, resolution, or file format. get_items_by_category returns a refinements object describing available filter options, but those filters are not directly passable as input params in the current API. You can fork it on Parse and revise to add the missing filter parameters.
Does the API expose download links or license files for items?+
No download links or license file URLs are returned by any endpoint. The item detail response covers metadata, tags, attributes, and image URLs. Access to downloadable assets on Envato Elements requires an active subscription handled through the Elements website. You can fork this API on Parse and revise it to add any publicly accessible download-adjacent endpoints if they become available.
How does pagination work across the listing endpoints?+
Both get_items_by_category and search_items return a pagination object containing currentPage, totalPages, nextPageUrl, previousPageUrl, firstPageUrl, displayedPages, and perPage. Pass an integer page parameter to move between pages. Results per page are determined by the source and reflected in the perPage field.
Page content last updated . Spec covers 5 endpoints from elements.envato.com.
Related APIs in MarketplaceSee all →
textures.com API
Search and browse millions of textures by category or keyword to find high-resolution texture maps with detailed pricing and specifications. Discover the latest content additions, explore free samples, and access complete metadata including available resolutions and texture maps for your projects.
etsy.com API
Discover what shoppers are searching for on Etsy by accessing real-time trending keywords and popular search terms that can help you identify market demand and optimize your product listings. Get instant access to autocomplete suggestions and "Popular right now" trends to stay ahead of customer interests and improve your shop's visibility.
serviceseeking.com.au API
Search and browse job postings and local service providers across Australia on ServiceSeeking.com.au. View detailed business profiles, ratings, pricing, and explore hundreds of service categories — from tradespeople to home services and beyond.
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.
pexels.com API
Search and browse millions of free stock photos and videos on Pexels. Access trending content, photographer galleries, photo/video challenges, and search suggestions via a clean API.
pluginboutique.com API
Search and browse thousands of audio plugins across categories, brands, and deals, while discovering free products, new arrivals, and bundle offers. Get detailed information about specific plugins and find exactly what you need for your music production setup.
ens.vision API
Search and explore ENS domains across the marketplace, discover owner portfolios and activity feeds, and resolve names to addresses with complete text records. Get domain details, browse categories, view offers and recommendations, and track all marketplace listings in one place.
elementvape.com API
Search and browse vape products from Element Vape, including prices, specifications, availability, and category listings. Access detailed product pages with variant options, media galleries, and customer reviews.