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",
  "comments": "comment1\ncomment2\ncomment3"
}'
{
  "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 comments

Example:

"add"

service
integer
required

Service ID for the comments order

Example:

123

Link to the post for the comments order

Example:

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

comments
string
required

Comments list separated by or for the comments order

Example:

"comment1\ncomment2\ncomment3"

Response

200
application/json
OK
order
integer
Example:

123777