piggy.fandom.com APIpiggy.fandom.com ↗
Retrieve all Piggy (Roblox) character skins from the Fandom wiki. Returns skin names, thumbnail image URLs, and page IDs, sorted alphabetically.
curl -X GET 'https://api.parse.bot/scraper/1e2878da-cc05-4735-a4e7-e46b8816bc53/get_skins' \ -H 'X-API-Key: $PARSE_API_KEY'
Get all Piggy skins from the Piggy Wiki Category:Skins page. Returns each skin's name and thumbnail image URL. Results are sorted alphabetically by name.
| Param | Type | Description |
|---|---|---|
| limit | integer | Maximum number of skins to return. |
| thumb_size | integer | Thumbnail image width in pixels for scaling. |
{
"type": "object",
"fields": {
"skins": "array of skin objects with name, image_url, and page_id",
"total": "integer"
},
"sample": {
"skins": [
{
"name": "???",
"page_id": 83719,
"image_url": "https://static.wikia.nocookie.net/roblox-piggy-wikia/images/b/be/TheEntity.png/revision/latest/scale-to-width-down/178?cb=20250728205029"
},
{
"name": "Alfis",
"page_id": 73453,
"image_url": "https://static.wikia.nocookie.net/roblox-piggy-wikia/images/2/2d/AlfisFuture.png/revision/latest/scale-to-width-down/126?cb=20250728201909"
},
{
"name": "Angel",
"page_id": 147,
"image_url": "https://static.wikia.nocookie.net/roblox-piggy-wikia/images/4/42/AngelBetterGraphics.png/revision/latest/scale-to-width-down/200?cb=20240725062019"
}
],
"total": 183
}
}About the piggy.fandom.com API
The Piggy Fandom Wiki Skins API exposes 1 endpoint — get_skins — that returns the full catalog of playable character skins from the Piggy Roblox game wiki. Each result includes the skin's name, thumbnail image URL, and page ID. The endpoint supports optional filtering by result count and thumbnail pixel width, making it straightforward to integrate skin listings into fan sites, Roblox tools, or game companion apps.
What the API Returns
The get_skins endpoint returns an array of skin objects sourced from the Piggy Fandom wiki's Category:Skins page. Each object in the skins array contains three fields: name (the skin's display name), image_url (a direct URL to the skin's thumbnail), and page_id (the wiki page identifier for that skin). The response also includes a total integer indicating how many skins matched the query.
Parameters
Two optional parameters let you shape the response. limit caps the number of skin objects returned — useful for paginating large collections or building preview widgets. thumb_size controls the pixel width of the thumbnail image URLs returned, so you can request smaller images for grid views or larger ones for detail pages. Results are always sorted alphabetically by skin name regardless of which parameters are set.
Coverage and Scope
The API reflects the skins listed under the Category:Skins index on piggy.fandom.com. Coverage tracks whatever skins the Piggy wiki community has catalogued there. Because the wiki is community-maintained, newly added skins appear once the wiki page exists. The API does not filter by skin rarity, set, or acquisition method — it returns all listed skins uniformly.
- Build a Piggy skin browser displaying thumbnail images and names for a fan site.
- Populate a dropdown of all available skins in a Roblox companion or loadout planner app.
- Cross-reference
page_idvalues to deep-link users directly to individual skin wiki pages. - Generate an alphabetically sorted skin checklist for players tracking cosmetic collection progress.
- Render a responsive skin gallery by requesting scaled thumbnails via the
thumb_sizeparameter. - Feed skin name and image data into a Discord bot that answers 'what skins are in Piggy?' queries.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Piggy Fandom have an official developer API?+
What does `get_skins` return for each skin, and can I filter by skin set or rarity?+
name, image_url, and page_id. Filtering by skin set, rarity tier, or acquisition method is not currently supported — the endpoint returns all catalogued skins. You can fork this API on Parse and revise it to add a filter parameter tied to those attributes.Does the API include skin pricing, unlock conditions, or in-game stats?+
How fresh is the skin data relative to the wiki?+
Does `thumb_size` affect which skins are returned, or just the image dimensions?+
thumb_size only scales the thumbnail image width in the returned image_url values. It does not filter, reorder, or remove any skin objects from the response. The full set of skins (up to the limit value) is always returned regardless of the size requested.