Skip to content

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

100 Commits
 
 
 
 

Repository files navigation

Stipop

This version of API will be inactive by 15th of July.
Please visit https://github.com/stipop-development/Sticker_Library_API for the correct version. Thank you.

IntroKey FeaturesGet StartedPack APIID APIAnnouncementsIssuesLicense

Intro

Works with Android Works with iOS GitHub issues

Stipop provides a powerful and flexible sticker API that enables companies to add stickers onto their apps and websites with minimum effort and maximum effect.

Stickers are one of the most powerful visual contents you can find in the digital world. With more than 50 billion being sent everyday, and unlike GIFs, it brings emotion into online communicaton, because a specific artist created it with a purpose (for online communication, character etc.) this makes stickers very unique and usable and tailored to all tastes.

Seeing how sticker are a useful kind of media, we as a team started a platform, where stickers and sticker lovers can play about. Our product began as an app for messenger users to download stickers for their personal use. Now that there is more than 5,000 sticker artists participating from 15 different countries and the total stickers accumulate to 100,000 we thought it would be best that other companies should also be able to provide stickers to their own users.

Key Features

  • Sticker Package
    • 100,000 stickers uploaded by 5,000 global artists around the world.
    • Customized sticker packs that capture the preferences of your target users, recommended and assorted through Stipop’s millions of user data.
  • Multi-language Contents
    • English/Spanish/Hindi/Russian/German/French/Portuguese/Italian/Simplified-Chinese/Traditional-Chinese/Catonese/Japanese/Thai/Indonesian /Korean
  • Regional Best
    • Top 100 download list provided in specified langauge speaking countries
  • Daily Update
    • All sticker list updated in a daily basis with new stickers added in automatically
  • Favorites (preparing)
    • API to provide list of stickers used the most by a specific end user

Get started 🚀

To get started, review sections below in the 'README' files in the Stipop_Sticker_API repository.

1) Sticker-Pack API (default: Best 5)

  • URL

    /v1/package/best/:languageCode

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    languageCode=[string] all:Common, en:English, es:Spanish, ko:Korean

  • Success Response:

    • Code: 200
      Content:
      {
        "status": "success",
        "code": "0000",
        "packages": [
          {
              "packageId": 0,
              "packageName": "sticker 1",
              "mainImgUrl": "https://....Z41sOfn7Z.png",
              "keywords": "keyword1, keyword2",
              "language": "korean",
              "animatedYn": "N"
          },
          {
              "packageId": 1,
              "packageName": "sticker 2",
              "mainImgUrl": "https://....eNSPZR3r2D.png",
              "keywords": "keyword1, keyword2",
              "language": "Spanish",
              "animatedYn": "N"
          }
         ]
      }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }

      OR

    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"9010"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1/package/best/ko" \ --header "apikey:av03Ea0w18953er"
    

2) Sticker-ID API

  • URL

    /v1/package/:packageId

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required: packageId=[integer]

  • Success Response:

    • Code: 200
      Content:
      {
          "status": "success",
          "code": "0000",
          "stickers": [
            {
                "packageId": 1,
                "stickerId": 790,
                "stickerImgUrl": "https://...img1.png"
            },
            {
                "packageId": 1,
                "stickerId": 791,
                "stickerImgUrl": "https://...img2.png"
            }
          ]
      }
  • Error Response:

    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }

      OR

    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"9010"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1/package/9964" \ --header "apikey:av03Ea0w18953er"
    

3) Best Package API - 1

  • URL

    /v1.1/package/best/all

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    pageNumber=[integer] minimum 1
    pageSize=[integer] minimum 1
    stickerSize=[integer] minimum 1, maximum 30
    languageCode=[string] all:Common, en:English, es:Spanish, ko:Korean
    thumbnail=[integer] if gif, value 1 shows thumbnail(png format) , default 0

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageId": 1197,
              "packageName": "Daily muu",
              "packageArtist": "pretty ming",
              "mainImgUrl": "https://.....1798_ddada_muu_3.png",
              "language": "English",
              "animatedYn": "N",
              "sticker": [
                  {
                      "s_id": 23340,
                      "p_id": 1197,
                      "imgUrl": "https://.....8882_ddada_muu_1.png",
                      "thumb": 0
                  },
                  {
                      "s_id": 23352,
                      "p_id": 1197,
                      "imgUrl": "https://.....9004_ddada_muu_2.png",
                      "thumb": 0
                  }
                ]
            }
          ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber is only a number",
        "code": "9010"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageSize is only a number",
        "code": "9011"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "stickersize is only a number",
        "code": "9012"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "please enter the correct language code",
        "code": "9013"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/best/all?pageNumber=1&pageSize=1&stickerSize=2&languageCode=ko&thumbnail=1" \ --header "apikey:7b841302b60302abv"
    

4) Best Package - 2 API

  • URL

    /v1.1/package/best/main

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    pageNumber=[integer] minimum 1
    pageSize=[integer] minimum 1
    languageCode=[string] all:Common, en:English, es:Spanish, ko:Korean

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageId": 645,
              "packageName": "Beagle and Pomeranian 02",
              "packageArtist": "Twistolive",
              "mainImgUrl": "https://.....4229_raon_01.gif",
              "language": "English",
              "animatedYn": "Y"
          },
          {
              "packageId": 1849,
              "packageName": "CUTE JELLYNYANG",
              "packageArtist": "minih",
              "mainImgUrl": "https://.....1603_NtxKBejaRV.gif",
              "language": "English",
              "animatedYn": "Y"
          }
        ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber is only a number",
        "code": "9010"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageSize is only a number",
        "code": "9011"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "please enter the correct language code",
        "code": "9013"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/best/main?pageNumber=1&pageSize=2&languageCode=en" \ 
         --header "apikey:7b841302b60302abv"
    

5) Package Detail API

  • URL

    /v1.1/package/:packageId

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    packageId=[integer]

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageName": "Cute Bunny",
              "uName": "Thomas.S",
              "packageId": 127,
              "stickerId": 902,
              "stickerImgUrl": "https://.....unny_1.png",
              "animatedYn": "N"
          },
          {
              "packageName": "Cute Bunny",
              "uName": "Thomas.S",
              "packageId": 127,
              "stickerId": 903,
              "stickerImgUrl": "https://.....unny_2.png",
              "animatedYn": "N"
          }
          ...
        ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "packageId is only a number",
        "code": "9009"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "non exist package",
        "code": "9020"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/198" \ 
         --header "apikey:7b841302b60302abv"
    

6) User Bookmark Package - 1 API

  • URL

    /v1.1/package/bookmark/all

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    userId=[string] values ​​that can identify end users
    pageNumber=[integer] minimum 1
    pageSize=[integer] minimum 1
    stickerSize=[integer] minimum 1, minimum 30
    thumbnail=[integer] if gif, value 1 shows thumbnail(png format) , default 0

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageId": 645,
              "packageName": "Beagle and Pomeranian 02",
              "packageArtist": "Twistolive",
              "mainImgUrl": "https://.....4229_raon_01.gif",
              "language": "English",
              "animatedYn": "Y",
              "sticker": [
                  {
                      "s_id": 10817,
                      "p_id": 645,
                      "imgUrl": "https://.....4235_raon_01.png",
                      "thumb": 1
                  },
                  {
                      "s_id": 10819,
                      "p_id": 645,
                      "imgUrl": "https://.....4262_raon_02.png",
                      "thumb": 1
                  }
                ]
            }
          ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber is only a number",
        "code": "9010"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageSize is only a number",
        "code": "9011"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "stickersize is only a number",
        "code": "9012"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/bookmark/all?pageNumber=1&pageSize=1&stickerSize=2&thumbnail=1&userId=Obu4242aE12ka10" \ 
         --header "apikey:7b841302b60302abv"
    

7) User Bookmark Package - 2 API

  • URL

    /v1.1/package/bookmark/main

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    userId=[string] values ​​that can identify end users
    pageNumber=[integer] minimum 1
    pageSize=[integer] minimum 1

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageId": 645,
              "packageName": "Beagle and Pomeranian 02",
              "packageArtist": "Twistolive",
              "mainImgUrl": "https://.....4229_raon_01.gif",
              "language": "English",
              "animatedYn": "Y"
          },
          {
              "packageId": 1849,
              "packageName": "CUTE JELLYNYANG",
              "packageArtist": "minih",
              "mainImgUrl": "https://.....1603_NtxKBejaRV.gif",
              "language": "English",
              "animatedYn": "Y"
          }
        ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber is only a number",
        "code": "9010"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageSize is only a number",
        "code": "9011"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/bookmark/main?pageNumber=1&pageSize=2&userId=989212165228b338" \ 
         --header "apikey:7b841302b60302abv"
    

8) User Bookmark Package - 3 API

  • URL

    /v1.1/package/bookmark

  • Method:

    POST

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Body

    Required:
    packageId=[integer]
    userId=[string] values ​​that can identify end users

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "packageId is only a number",
        "code": "9009"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "non exist package",
        "code": "9020"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "package already add",
        "code": "9023"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request POST "https://bapi.stipop.io/v1.1/package/bookmark/" \ 
         --header "apikey:7b841302b60302abv -d "userId=9aeEsa0221&packageId=127"
    

9) User Bookmark Package - 4 API

  • URL

    /v1.1/package/bookmark

  • Method:

    DELETE

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Body

    Required:
    packageId=[integer]
    userId=[string] values ​​that can identify end users

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "packageId is only a number",
        "code": "9009"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "non exist package",
        "code": "9020"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request DELETE "https://bapi.stipop.io/v1.1/package/bookmark/" \ 
         --header "apikey:7b841302b60302abv -d "userId=9aeEsa0221&packageId=127"
    

10) User Bookmark Sticker - 1 API

  • URL

    /v1.1/package/sticker/bookmark

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Parameters

    Required:
    pageNumber=[integer] default value 1
    pageSize=[integer] default value 10
    userId=[string] values ​​that can identify end users

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "stickerId": 10818,
              "stickerImgUrl": "https://img.stipop.io/.....27154236_raon_02.gif",
              "packageId": 645
          },
          {
              "stickerId": 10816,
              "stickerImgUrl": "https://img.stipop.io/.....27154229_raon_01.gif",
              "packageId": 645
          }
          ]
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber is only a number",
        "code": "9010"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageSize is only a number",
        "code": "9011"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/sticker/bookmark?pageNumber=2&pageSize=5&userId=eka87AbekwAewa" \ 
         --header "apikey:7b841302b60302abv
    

11) User Bookmark Sticker - 2 API

  • URL

    /v1.1/package/sticker/bookmark

  • Method:

    POST

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Body

    Required:
    stickerId=[integer]
    userId=[string] values ​​that can identify end users

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "stickerId is only a number",
        "code": "9015"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "non exist sticker",
        "code": "9020"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "sticker already add",
        "code": "9024"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request POST "https://bapi.stipop.io/v1.1/package/sticker/bookmark/" \ 
         --header "apikey:7b841302b60302abv -d "userId=9aeEsa0221&stickerId=38015"
    

12) User Bookmark Sticker - 3 API

  • URL

    /v1.1/package/sticker/bookmark

  • Method:

    DELETE

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Body

    Required:
    stickerId=[integer]
    userId=[string] values ​​that can identify end users

  • Success Response:

    • Code: 200
      Content:
      {
      "header": {
          "status": "success",
          "code": "0000"
      }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "required userid",
        "code": "9014"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "stickerId is only a number",
        "code": "9015"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "non exist sticker",
        "code": "9020"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request DELETE "https://bapi.stipop.io/v1.1/package/sticker/bookmark/" \ 
         --header "apikey:7b841302b60302abv -d "userId=9aeEsa0221&stickerId=38015"
    

13) Search Sticker - API

  • URL

    /v1.1/package/sticker/search

  • Method:

    GET

  • Request Headers

    Required:

    apikey=[string] Issued apikey value

  • Request Body

    Required:
    packageName=[string] only one of two attributes is allowed ; packageName or stickerTag
    stickerTag=[string] only one of two attributes is allowed ; packageName or stickerTag
    pageNumber=[integer] default value 0
    pageSize=[integer] default value 10

  • Success Response:

    • Code: 200
      Content:
        {
      "header": {
          "status": "success",
          "code": "0000"
      },
      "body": [
          {
              "packageId": 1879,
              "packageName": "Heart collection",
              "stickerId": 38008,
              "stickerImgUrl": "https://img.stipop.io/2019/8/12/......5582442_todangi_01.gif",
              "stickerTags": [
                  "heart",
                  "cute",
                  "activity",
                  "funny",
                  "love"
              ],
              "commitDate": "2019-08-12 16:50:46"
          },
          {
              "packageId": 1879,
              "packageName": "Heart collection",
              "stickerId": 38013,
              "stickerImgUrl": "https://img.stipop.io/2019/8/12/......5583842_goodday_06.gif",
              "stickerTags": [
                  "heart",
                  "cute",
                  "activity",
                  "funny",
                  "love"
              ],
              "commitDate": "2019-08-12 16:50:46"
          }
  • Error Response:

    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "pageNumber or pageSize is only number",
        "code": "9032"
      }
    • Code: 400 BAD REQUEST
      Content:

      {
        "status": "fail",
        "message": "stickerTag or packageName is only character",
        "code": "9033"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "non exist apikey",
        "code": "9000"
      }
    • Code: 401 UNAUTHORIZED
      Content:

      {
        "status": "fail",
        "message": "apikey is wrong",
        "code": "9001"
      }
    • Code: 500 Internal Server error
      Content:

      {
         "status" : "fail", 
         "message": "server error", 
         "code":"0001"
      }
  • Sample Call:

    curl --location --request GET "https://bapi.stipop.io/v1.1/package/sticker/search?stickerTag=happy&pageNumber=2&pageSize=5" \ 
         --header "apikey:7b841302b60302abv"
    

Announcements 📢

Please check out Annoucements for recent changes.

Opening Issues ⚠️

Only use the GitHub Issues section if you discovered issues with the code itself. Do not mistake the Issues page as a help desk. You can ask for help at Stack Overflow.
For support, please contact webmaster@stipop.io.

License

Stipop Sticker API is MIT licensed, as found in the LICENSE file.

About

[OLD VERSION] This version will be deactivated by 15th of July.

Topics

Resources

Stars

Watchers

Forks

Releases

Packages

Contributors