🎮 PET SIM 99 API

FUTURISTIC DATA GATEWAY

Collections
34
Clans
165K+
Items
28.3K
Status
🟢 LIVE
GET

/api/collections

Access all 34 collections

Execute
GET

/api/exists

Item existence (14,923 items)

Execute
GET

/api/rap

Recent Average Price (13,435)

Execute
GET

/api/clansTotal

Total clan count

Execute
GET

/api/clans

Paginated clan list

Execute
GET

/api/clan/:name

Get clan details

Execute
GET

/api/collection/:name

Specific collection

Execute
GET

/api/activeClanBattle

Active battle info

Execute
GET

/health

API health check

Execute

⚡ LIVE API TESTER

💻 CODE EXAMPLES

JavaScript

fetch('https://eu-pet01.whee.lol/api/exists?limit=50')
  .then(res => res.json())
  .then(data => console.log(data))

Python

import requests

response = requests.get(
  'https://eu-pet01.whee.lol/api/collections'
)
print(response.json())

cURL

curl "https://eu-pet01.whee.lol/api/exists?limit=10"