Skip to content

Give Items & Gold

Your character can give items or gold to other characters on your account, as long as both characters are on the same map. This feature enables you to specialize some characters as dedicated transporters or traders, making it easier to manage resources within your team.

You can use this to optimize logistics or simply transfer gear, resources, or currency to the character who needs them most.

  • Both the sender and receiver must be your own characters, and they must be located on the same map.
  • Giving multiple items at once applies a cooldown: 3 seconds per different item given.

To give one or more items to another of your characters, use the following request:

Endpoint: POST /my/{sender}/action/give/item

curl --request POST \
--url https://api.artifactsmmo.com/my/{sender}/action/give/item \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"character": "receiverName",
"items": [
{ "code": "iron_ore", "quantity": 10 },
{ "code": "wood", "quantity": 5 }
]
}'
FieldDescription
characterName of the character who will receive the items.
itemsList of items to give (1–20 items). Each item has a code and quantity.

To transfer gold to another of your characters on the same map, use the following request:

Endpoint: POST /my/{sender}/action/give/gold

curl --request POST \
--url https://api.artifactsmmo.com/my/{sender}/action/give/gold \
--header 'Accept: application/json' \
--header 'Authorization: Bearer YOUR_TOKEN' \
--header 'Content-Type: application/json' \
--data '{
"character": "receiverName",
"quantity": 500
}'
FieldDescription
characterName of the character who will receive the gold.
quantityAmount of gold to give.