API 정보
월드리믹스 API를 이용하실 수 있습니다

API

HTTP POST
API URL https://wdremix.net/api/v2
포맷 JSON

Service list

파라미터 디스크립션
key Your API key
action services

예제(Example response)

[
   {
      "Category":"Seo",
      "name":"Data Entry",
      "services":"1",
      "rate":1,
      "min":"10",
      "max":"100000",
      "type":"Default"
   },
   {
      "Category":"Seo",
      "name":"Keyword Optimize",
      "service":"2",
      "rate":1,
      "min":"50",
      "max":"15000",
      "type":"Default"
   }
]

Add order

예제(Example response)

{
    "order": 1000000
}

Order status

파라미터 디스크립션
key Your API key
action status
order order id

예제(Example response)

{
    "charge": "0.27819",
    "start_count": "3572",
    "status": "Partial",
    "remains": "157",
    "currency": "USD"
}

Multiple orders status

파라미터 디스크립션
key Your API key
action status
order Order IDs separated by comma

예제(Example response)

{
    "1": {
        "charge": "0.27819",
        "start_count": "3572",
        "status": "Partial",
        "remains": "157",
        "currency": "USD"
    },
    "10": {
        "error": "Incorrect order ID"
    },
    "100": {
        "charge": "1.44219",
        "start_count": "234",
        "status": "In progress",
        "remains": "10",
        "currency": "USD"
    }
}

User balance

파라미터 디스크립션
key Your API key
action balance

예제(Example response)

{
    "balance": "100.84292",
    "currency": "USD"
}

Refill

파라미터 디스크립션
key Your API key
action refill
order order id

예제(Example response)

{
    "success": "Your order will be refill asap. Thank you for patience."
}
Example of PHP code