SEARCH_STICKER API Documentation

March 1, 2026 · View on GitHub

🌐 Language Switch

中文版 | English

Interface Information

POST /openapi/capcut-mate/v1/search_sticker

Function Description

Search stickers by keywords. This interface is used to search for related sticker materials based on keywords provided by users, returning a list of matching stickers, including detailed information such as image URLs, dimensions, types, etc.

More Documentation

📖 For more detailed documentation and tutorials, please visit: https://docs.jcaigc.cn

Request Parameters

{
  "keyword": "人"
}

Parameter Description

ParameterTypeRequiredDefaultDescription
keywordstring-Search keyword

Parameter Details

keyword

  • Type: string
  • Description: Keyword to search for stickers
  • Example: "人", "花", "动物"

Response Format

Success Response (200)

{
  "data": [
    {
      "sticker": {
        "large_image": {
          "image_url": "https://p3-heycan-jy-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/29351205dbd943658d94c8feb17e5ed4~tplv-3jr8j4ixpe-resize:1920:1920.png?x-expires=1797257777&x-signature=r18I9uLQzgm%2FcvF8WNLbgw8BRwg%3D"
        },
        "preview_cover": "",
        "sticker_package": {
          "height_per_frame": 540,
          "size": 305932,
          "width_per_frame": 540
        },
        "sticker_type": 1,
        "track_thumbnail": "https://p3-heycan-jy-sign.byteimg.com/tos-cn-i-3jr8j4ixpe/29351205dbd943658d94c8feb17e5ed4~tplv-3jr8j4ixpe-resize:120:120.png?x-expires=1797257777&x-signature=NqeKYGyeqIjCzF0Ls07ctnP%2BehI%3D&format=.png"
      },
      "sticker_id": "7521200021564427545",
      "title": "大笑"
    }
  ]
}

Response Field Description

FieldTypeDescription
dataarraySticker data list
stickerobjectDetailed sticker information
large_imageobjectLarge image information
image_urlstringImage URL
preview_coverstringPreview cover
sticker_packageobjectSticker package information
height_per_framenumberHeight per frame
sizenumberSticker package size
width_per_framenumberWidth per frame
sticker_typenumberSticker type
track_thumbnailstringTrack thumbnail
sticker_idstringSticker ID
titlestringSticker title

Error Response (4xx/5xx)

{
  "detail": "Error message description"
}

Usage Examples

cURL Examples

1. Search Stickers with Keyword "人"

curl -X POST https://capcut-mate.jcaigc.cn/openapi/capcut-mate/v1/search_sticker \
  -H "Content-Type: application/json" \
  -d '{
    "keyword": "人"
  }'

2. Search Stickers with Keyword "动物"

curl -X POST https://capcut-mate.jcaigc.cn/openapi/capcut-mate/v1/search_sticker \
  -H "Content-Type: application/json" \
  -d '{
    "keyword": "动物"
  }'

Error Code Description

Error CodeError MessageDescriptionSolution
400keyword is requiredMissing keyword parameterProvide a valid keyword parameter

Notes

  1. Keyword Matching: Current implementation uses simple title matching, can be extended to full-text search in actual applications
  2. Data Source: Currently returns mock data, in actual applications should connect to sticker database or call external APIs
  3. Performance Consideration: For large sticker datasets, should consider pagination and caching mechanisms

Workflow

  1. Validate required parameter (keyword)
  2. Call service layer to search for stickers
  3. Return matching sticker list

📚 Project Resources
GitHub: https://github.com/Hommy-master/capcut-mate
Gitee: https://gitee.com/taohongmin-gitee/capcut-mate