Developers

API Documentation

Submit orders, check status, and pull reports straight from your own app — no manual steps.

Authentication

Sign in to get your API key

Your unique key is generated automatically once you log in.

Log in

Endpoint

POST https://proses.flare99.com/api/v1/seo

All requests use POST. Responses are returned as JSON.

Parameters

Parameter Required Description
api_key Required Your unique API key (shown above).
email Required The email on your account.
action Required The action you're requesting (see below).

Available actions

Action Description
orderMake a new order
order_statusCheck order status
order_detailsGet full order details
balanceCheck your account balance

Examples

Make an order

$url  = 'https://proses.flare99.com/api/v1/seo';
$data = [
    'api_key'  => 'YOUR_API_KEY',
    'email'    => 'YOUR_EMAIL',
    'action'   => 'order',
    'service'  => '1',
    'quantity' => '100',
    'links'    => "https://link1.com\nhttps://link2.com",
    'keywords' => 'keyword1,keyword2',
];
// POST $data to $url

Response

{
    "order": 269013
}
Processing...

Regenerate API key?

Your current API key will be disabled immediately. Any application using the old key will need to be updated before it can place orders again.