Skip to content

Recycling

Recycling lets you break down crafted equipment to recover some of the original crafting materials. It’s useful for clearing unwanted gear or recovering resources. To recycle an item, your character must be on a map with a workshop of the matching skill. For more information about maps, see Maps and Movement.

The materials you receive are chosen randomly from the item’s craft recipe. The number of resources returned depends on recipe complexity:

resources returned = floor((total items in recipe - 1) / 5) + 1

With a minimum of 1 resource per recycled item.

To recycle an item at the matching skill’s workshop, use this endpoint:

Endpoint: POST /my/{name}/action/recycling

curl --request POST \
--url https://api.artifactsmmo.com/my/{name}/action/recycling \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"code": "iron_sword",
"quantity": 5
}'
FieldDescription
codeThe item code to recycle.
quantityNumber of items to recycle.