Gift

GET/POST

https://api.yoozseen.com/api/v1

Pick the gift name from the Service List — each gift is shown with its emoji, e.g. teddy (🧸).

Request

Query parameters

NameDefinition
key *Your Api Key
action *add
service *id service (19)
link *@username (recipient)
gift *gift name (from Service List, e.g. teddy)

* - mandatory parameter

Request example
1 2 3 4 5 6 7 8 9 curl --location 'https://api.yoozseen.com/api/v1/' \ --header 'Content-Type: application/json' \ --data '{ "key": "xxxxxxxxx", "action": "add", "service": "19", "link": "@username", "gift": "teddy" }'
Response

* Meaning and usage of each parameter

NameDescription
status Returns the order status: (pending — registered and in progress) (error — registration failed) (completed — completed order)
message_error error description
order your order
quantity your order quantity
link your order link
rate price (dollar)
currency currency type
Response example
1 2 3 4 5 6 7 8 { "status": "pending", "order": 1500123, "link": "@username", "quantity": 100, "remains": 0.5, "currency": "dollar" }