-
Title
Content
-
API URL
https://reelrevive.com/api/v1
-
Response Format
JSON
-
HTTP Method
POST
-
Your API Key
Your API key
-
Example PHP Code
Download
Service List:
-
Required Parameter
Content
-
key
Your API Key
-
action
"services"
Example Request::
{
"action": "services",
"key": "your_api_key_here"
}
Service List Success Response:
[
{
"service": 1,
"name": "Google Indexing Service - Regular",
"rate": "70.00000000",
"min": 10,
"max": 10000,
"category": "Link Indexing"
},
{
"service": 2,
"name": "Google Indexing Service - Premium",
"rate": "100.00000000",
"min": 100,
"max": 10000,
"category": "Link Indexing"
}
]
Service List Error Response:
{"error" : "The action field is required"}
{"error" : "The api key field is required"}
{"error" : "Invalid api key"}
{"error" : "Invalid action"}
Place New Order:
-
Required Parameter
Content
-
key
Your API Key
-
action
"add"
-
service
Service ID
-
link
Link to Page
-
dripfeed(Optional)
Dripfeed Days
Example Request::
{
"key": "your_api_key",
"action": "add",
"service": 1,
"link": "http://example.com\nhttp://example2.com\nhttp://example.com\nhttp://example2.com\nhttp://example2.com\nhttp://example.com\nhttp://example2.com\nhttp://example2.com\nhttp://example2.com\nhttp://example2.com"
}
New Order Success Response:
{
"order": 1242,
"processed_links": ["http:\/\/example.com", "http:\/\/example2.com", "http:\/\/example.com", "http:\/\/example2.com", "http:\/\/example2.com", "http:\/\/example.com", "http:\/\/example2.com", "http:\/\/example2.com", "http:\/\/example2.com", "http:\/\/example2.com"]
}
New Order Error Response:
{"error" : "The action field is required"}
{"error" : "The api key field is required"}
{"error" : "Invalid api key"}
{"error" : "Invalid Service Id"}
{"error" : "The link field is required"}
{"error" : "The quantity field is required"}
{"error" : "Please follow the limit"}
{"error" : "Insufficient balance"}
Order Status:
-
Required Parameter
Content
-
key
Your API Key
-
action
"status"
-
order
Order ID
Example Request::
{
"action": "status",
"key": "your_api_key_here",
"order": 12345
}
Order Status Success Response:
{
"status" : "Pending",
"start_count" : "1000",
"remains" : "500",
"currency" : USD
}
-
Available status
-
Pending
-
Processing
-
Complete
-
Order Cancelled
-
Refunded
Order Status Error Response:
{"error" : "The action field is required"}
{"error" : "The api key field is required"}
{"error" : "Invalid api key"}
{"error" : "Invalid action"}
{"error" : "The order field is required"}
{"error" : "Invalid Order Id"}
User Balance:
-
Required Parameter
Content
-
key
Your API Key
-
action
"balance"
Example Request::
{
"action": "balance",
"key": "your_api_key_here"
}
User Balance Success Response:
{
"status": "100.84292",
"currency" :"USD"
}
User Balance Error Response:
{"error" : "The action field is required"}
{"error" : "The api key field is required"}
{"error" : "Invalid api key"}