Adobe Creative Suite Member API

Member profile and licensing operations

Operations 1

GET /Member/1/Profile Adobe Creative Suite Get Member Profile #

Documentation

Specifications

Schemas & Data

Other Resources

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-suite-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-suite-member-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Adobe Creative Suite Adobe Stock Member API
  description: The Adobe Stock API enables search, licensing, and retrieval of stock photos, illustrations, vectors, videos, and templates from the Adobe Stock marketplace. It supports both editorial and commercial licensing workflows and can be integrated into creative applications and digital asset management systems. The API uses a combination of OAuth 2.0 bearer tokens and API key authentication depending on the operation being performed.
  version: 1.0.0
  termsOfService: https://www.adobe.com/legal/terms.html
  contact:
    name: Adobe Developer Support
    url: https://developer.adobe.com/support/
  license:
    name: Adobe Developer Terms
    url: https://www.adobe.com/legal/developer-terms.html
servers:
- url: https://stock.adobe.io/Rest
  description: Adobe Stock API production server
security:
- bearerAuth: []
- apiKeyAuth: []
tags:
- name: Member
  description: Member profile and licensing operations
paths:
  /Member/1/Profile:
    get:
      operationId: getMemberProfile
      summary: Adobe Creative Suite Get Member Profile
      description: Retrieves the profile of the authenticated Adobe Stock member including account details, quota information, and available license credits. Requires a valid OAuth 2.0 user token.
      tags:
      - Member
      parameters:
      - name: locale
        in: query
        description: BCP 47 locale for localized profile data
        schema:
          type: string
          example: en_US
        example: en_US
      - name: x-api-key
        in: header
        required: true
        description: Adobe Stock API key (client ID)
        schema:
          type: string
        example: example_value
      responses:
        '200':
          description: Member profile returned successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/MemberProfile'
        '401':
          description: Unauthorized - invalid or missing bearer token
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    MemberProfile:
      type: object
      description: Adobe Stock member profile and account details
      properties:
        stock_user:
          type: object
          description: Core user account information
          properties:
            nb_downloads:
              type: integer
              description: Total number of downloads by this member
            nb_standard_downloads:
              type: integer
              description: Number of standard license downloads
            nb_standard_downloads_remaining:
              type: integer
              description: Remaining standard download quota
            nb_standard_downloads_limit:
              type: integer
              description: Total standard download limit for the current period
            purchase_options:
              type: object
              description: Available purchase and licensing options for the member
    ErrorResponse:
      type: object
      description: Standard error response
      properties:
        code:
          type: integer
          description: Numeric error code
          example: 1920
        message:
          type: string
          description: Human-readable error description
          example: example_value
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT
      description: OAuth 2.0 access token from Adobe IMS (required for licensing operations)
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: Adobe Stock API key (client ID) required for all operations