Envato User API

The User API from Envato — 4 operation(s) for user.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/envato-user-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

envato-user-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Envato Market Author User API
  version: 3.0.0
  description: Envato Market REST API. Provides catalog discovery, item detail, search, item downloads (for buyers), user account info, badges, collections, and author earnings/sales across Envato's per-asset marketplaces (ThemeForest, CodeCanyon, AudioJungle, VideoHive, GraphicRiver, 3DOcean, PhotoDune). Best-effort spec derived from publicly documented surfaces; not exhaustive.
  contact:
    name: Envato Build
    url: https://build.envato.com/api/
  license:
    name: Proprietary
servers:
- url: https://api.envato.com
  description: Envato API production base URL
security:
- bearerAuth: []
- oauth2:
  - default
tags:
- name: User
paths:
  /v3/market/buyer/list-purchases:
    get:
      tags:
      - User
      summary: List the authenticated buyer's purchases
      operationId: listPurchases
      parameters:
      - in: query
        name: include_all_purchases
        schema:
          type: boolean
      responses:
        '200':
          description: Purchases list
  /v1/market/private/user/account.json:
    get:
      tags:
      - User
      summary: Get the authenticated user's account info
      operationId: getUserAccount
      responses:
        '200':
          description: User account
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UserAccount'
  /v1/market/user:username.json:
    get:
      tags:
      - User
      summary: Get a public user profile
      operationId: getUserProfile
      parameters:
      - in: query
        name: username
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Public user profile
  /v1/market/user/items-by-site:json:
    get:
      tags:
      - User
      summary: Count items per site for a user
      operationId: getUserItemsBySite
      parameters:
      - in: query
        name: username
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Per-site item counts
components:
  schemas:
    UserAccount:
      type: object
      properties:
        image:
          type: string
          format: uri
        firstname:
          type: string
        surname:
          type: string
        available_earnings:
          type: string
        total_deposits:
          type: string
        balance:
          type: string
        country:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Personal Token
      description: 'Envato personal token issued from build.envato.com. Sent as `Authorization: Bearer <token>`.'
    oauth2:
      type: oauth2
      flows:
        authorizationCode:
          authorizationUrl: https://api.envato.com/authorization
          tokenUrl: https://api.envato.com/token
          scopes:
            default: Default Envato Market scope set