Getting Started

Getting Started

Welcome to the Sticker.ly API Wrapper! This is a public HTTP API that lets you search, discover, and integrate Sticker.ly stickers, packs, tags, and artists into your own apps or tools.

Getting Started

Welcome to the Sticker.ly API Wrapper! This is a public HTTP API that lets you search, discover, and integrate Sticker.ly stickers, packs, tags, and artists into your own apps or tools.

How It Works

You can access the API using any HTTP client (like curl, Postman, or fetch in JavaScript). No authentication is required.

Example: Search for Stickers

Using curl

curl "https://sticker-ly-api.sergiooak.com.br/api/v1/stickers/search?q=funny+cats"

Using JavaScript (fetch)

fetch('https://sticker-ly-api.sergiooak.com.br/api/v1/stickers/search?q=funny cats')
  .then(res => res.json())
  .then(data => console.log(data));

Replace sticker-ly-api.sergiooak.com.br with your actual deployment URL if self-hosted.

Available Endpoints

  • Stickers: /api/v1/stickers/*
  • Packs: /api/v1/packs/*
  • Tags: /api/v1/tags/*
  • Artists: /api/v1/artists/*
  • Home Tabs: /api/v1/home-tabs/*

Need help? Open an issue or check the documentation for more examples.