Edit in GitHubLog an issue

Creating Adobe Stock applications

As discussed previously, the Adobe Stock API is a RESTful web service. To call the API, you make requests using HTTPS GET and POST methods. The API provides several methods, defined as URL endpoints, for requesting information or assets from Adobe Stock. There are methods for searching, licensing assets, and getting purchase history. You pass parameters to the method appended to a URL endpoint, and in return the API provides responses in JSON structures. In this section, we will explore the API command structure and learn techniques for searching and licensing content.

Overview

Here is a summary of the general steps you follow when integrating with the Stock API:

  1. Spend some time browsing and searching content on the Adobe Stock website, to get a sense of the typical end-user workflows.
  2. Define your requirements for displaying Stock search results on your page. For example,
    • define your thumbnail sizes, localization preferences, and the number of thumbnails to display on the page;
    • plan which sorting and filtering capabilities to support, such as relevancy, creation date, and what asset types to return, such as only photos or only videos and/or premium content;
    • and decide which types of searches to support, such as keyword search and image similarity search.
  3. Register your application as a client of the Stock API and obtain your API Key (client ID) by creating an integration on the Adobe Developer Console. If you need to call licensing APIs, you will need additional credentials.
  4. Set up your headers for authentication, which could mean only the API key and application name, but could also require a user or organization token.
    • You will need to craft additional code (not specific to the Stock APIs) to generate your tokens.
  5. Build and execute a search query using your design decisions and user choices. Parse the JSON response and display information or thumbnails for the quantity of assets returned. Include metadata and thumbnails where appropriate.
    • Display additional results from the Search query using pagination.
  6. If desired, assist your user to license Stock assets, and view past license history.

>>> NEXT: Learn how to use the Search API.

  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2023 Adobe. All rights reserved.