API Documentation

Integrate SEOeStore services into your own application.

Why using API?

Using SEOeStore API will allow you to submit orders, check status & get reports directly through your own website or application, this may help you in delivering flexible service for your clients, also with zero efforts from your side.

API Documentation

https://panel.seoestore.net/action/api.php POST

All requests should be sent via POST method. Responses are returned in JSON format.

HTTP POST Requests

Parameter Notes Description
api_key Required Your unique API key. Can be found on your profile.
email Required The email associated to your account.
action Required The action that you're requesting.

Available Actions

Action Description
order Make new order
order_status Check order status
order_details Get full order details
balance Check your account balance

Examples

Make Order

$url = 'https://panel.seoestore.net/action/api.php';
$data = Array(
    'api_key' => 'YOUR_API_KEY',
    'email' => 'YOUR_EMAIL',
    'action' => 'order',
    'service' => '1',
    'quantity' => '100',
    'links' => "https://link1.com\nhttps://link2.com",
    'keywords' => 'keyword1,keyword2'
);
// Send POST request...

Response

{
    "order": 269013
}
Processing...