Adobe Creative Cloud Member API

Member profile and license history operations.

Operations 2

GET /Rest/Libraries/1/Member/Profile Adobe Creative Cloud Get Member Profile #
GET /Rest/Libraries/1/Member/LicenseHistory Adobe Creative Cloud Get License History #

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/adobe-creative-cloud-member-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

adobe-creative-cloud-member-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Creative Cloud Adobe Stock Member API
  description: REST API for searching, licensing, and downloading Adobe Stock assets including photos, vectors, illustrations, videos, templates, and 3D content. The Search API enables querying the Stock catalog with filters. The Licensing API handles asset licensing and download. Free for developers with an Adobe ID for search operations.
  version: '1.0'
  contact:
    name: Adobe Developer Support
    url: https://developer.adobe.com/
  license:
    name: Proprietary
    url: https://www.adobe.com/legal/terms.html
servers:
- url: https://stock.adobe.io
  description: Adobe Stock API production server.
security:
- bearerAuth: []
- apiKey: []
tags:
- name: Member
  description: Member profile and license history operations.
paths:
  /Rest/Libraries/1/Member/Profile:
    get:
      operationId: getMemberProfile
      summary: Adobe Creative Cloud Get Member Profile
      description: Returns the member's Stock profile including available quota and licensing capabilities.
      tags:
      - Member
      responses:
        '200':
          description: Member profile returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberProfile'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
  /Rest/Libraries/1/Member/LicenseHistory:
    get:
      operationId: getLicenseHistory
      summary: Adobe Creative Cloud Get License History
      description: Returns the member's Stock asset license history.
      tags:
      - Member
      parameters:
      - name: search_parameters[limit]
        in: query
        schema:
          type: integer
          default: 100
        example: 42
      - name: search_parameters[offset]
        in: query
        schema:
          type: integer
          default: 0
        example: 42
      - name: result_columns[]
        in: query
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: License history returned.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LicenseHistoryResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    MemberProfile:
      type: object
      properties:
        available_entitlement:
          type: object
          properties:
            quota:
              type: integer
              description: Remaining download quota.
            license_type_id:
              type: integer
            has_credit_model:
              type: boolean
            has_agency_model:
              type: boolean
            is_cce:
              type: boolean
              description: Whether the member has a Creative Cloud Enterprise plan.
            full_entitlement_quota:
              type: object
              properties:
                standard_credits_quota:
                  type: integer
                premium_credits_quota:
                  type: integer
                universal_credits_quota:
                  type: integer
    LicenseHistoryResponse:
      type: object
      properties:
        nb_results:
          type: integer
          example: 42
        files:
          type: array
          items:
            type: object
            properties:
              id:
                type: integer
              title:
                type: string
              content_type:
                type: string
              thumbnail_url:
                type: string
                format: uri
              license:
                type: string
              license_date:
                type: string
                format: date-time
              download_url:
                type: string
                format: uri
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: OAuth 2.0 access token.
    apiKey:
      type: apiKey
      in: header
      name: x-api-key
      description: Client ID from Adobe Developer Console.