POST
/
api
/
v2
curl --request POST \
  --url https://undrctrl.id/api/v2/ \
  --header 'Content-Type: application/json' \
  --data '{
  "key": "apiKey",
  "action": "services"
}'
[
  {
    "service": 1,
    "name": "Followers",
    "type": "Default",
    "category": "First Category",
    "rate": 0.9,
    "min": 50,
    "max": 10000,
    "refill": true,
    "cancel": true
  }
]

Body

application/json
key
string
required

The API key to fetch the service details

Example:

"apiKey"

action
string
required

Action to be performed, set to services

Example:

"services"

Response

200
application/json
OK
service
integer
Example:

1

name
string
Example:

"Followers"

type
string
Example:

"Default"

category
string
Example:

"First Category"

rate
string
Example:

0.9

min
string
Example:

50

max
string
Example:

10000

refill
boolean
Example:

true

cancel
boolean
Example:

true