POST
/
api
/
v2
curl --request POST \
  --url https://undrctrl.id/api/v2/ \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "apiKey",
  "action": "add",
  "service": 123,
  "link": "https://instagram.com/p/xxx",
  "quantity": 100,
  "usernames": "username1\nusername2\nusername3",
  "hashtags": "#hashtag1\n#hashtag2\n#hashtag3"
}'
{
  "order": 123777
}

Body

application/json
key
string
required

The API key for authentication

Example:

"apiKey"

action
string
required

Action to be performed, set to add for mentions with hashtags

Example:

"add"

service
integer
required

Service ID for the mentions with hashtags order

Example:

123

Link to the post for the order

Example:

"https://instagram.com/p/xxx"

quantity
integer
required

Needed quantity for the order

Example:

100

usernames
string
required

Usernames list separated by or

Example:

"username1\nusername2\nusername3"

hashtags
string
required

Hashtags list separated by or

Example:

"#hashtag1\n#hashtag2\n#hashtag3"

Response

200
application/json
OK
order
integer
Example:

123777