English
Русский

MarketPlace API Documentation

Check Purchase

POST
/check-purchase

Verify if a user has purchased a specific script by UID

Query Parameters:

?uid=user123&script_uid=1b5c01ee-d29b-4b89-8e72-a3780170a645

Response:

{
"success": true,
"purchased": true
}

Script Details

GET
/script-details

Retrieve information about a specific script by UID

Query Parameters:

?script_uid=1b5c01ee-d29b-4b89-8e72-a3780170a645

Response:

{
"success": true,
"script": {
  "id": "3",
  "uid": "1b5c01ee-d29b-4b89-8e72-a3780170a645",
  "name": "ExampleScript",
  "price": 100,
  "description": "Sample description",
  "owner": {
    "nickname": "User123",
    "avatar": "https://cdn.discordapp.com/.../avatar.png"
  },
  "screenshots": []
}
}

Script Changelog

GET
/script-changelog

Retrieve changelog information for a specific script by UID (latest version + updates list)

Query Parameters:

?script_uid=1b5c01ee-d29b-4b89-8e72-a3780170a645

Response:

{
"success": true,
"script_uid": "1b5c01ee-d29b-4b89-8e72-a3780170a645",
"latest_version": "1.0.6",
"latest_changelog_short": "Fixes and improvements",
"updates": [
  {
    "version": "1.0.6",
    "changelog": "Full changelog text...",
    "changelog_short": "Short summary...",
    "date": "2026-01-03T19:22:44.578815Z"
  }
]
}

Config Details

GET
/config-details

Retrieve information about a specific config by UID

Query Parameters:

?config_uid=9d6f7f31-4b2a-4a79-8a6f-2b5a9f40c2a1

Response:

{
"success": true,
"config": {
  "id": "12",
  "uid": "9d6f7f31-4b2a-4a79-8a6f-2b5a9f40c2a1",
  "name": "ExampleConfig",
  "price": 50,
  "description": "Sample description",
  "owner": {
    "nickname": "User123",
    "avatar": "https://cdn.discordapp.com/.../avatar.png"
  },
  "screenshots": []
}
}

Config Changelog

GET
/config-changelog

Retrieve changelog information for a specific config by UID (latest version + updates list)

Query Parameters:

?config_uid=9d6f7f31-4b2a-4a79-8a6f-2b5a9f40c2a1

Response:

{
"success": true,
"config_uid": "9d6f7f31-4b2a-4a79-8a6f-2b5a9f40c2a1",
"latest_version": "1.0.6",
"latest_changelog_short": "Fixes and improvements",
"updates": [
  {
    "version": "1.0.6",
    "changelog": "Full changelog text...",
    "changelog_short": "Short summary...",
    "date": "2026-01-03T19:22:44.578815Z"
  }
]
}