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 inEndpoint
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). |
| Required | The email on your account. | |
| action | Required | The action you're requesting (see below). |
Available actions
| Action | Description |
|---|---|
| order | Make a new order |
| order_status | Check order status |
| order_details | Get full order details |
| balance | Check 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
}