API Docs

API DETAILS
API URL

https://indexingexpert.com/api/v1

API KEY

Your API Key

HTTP METHOD

POST

RESPONSE FORMAT

JSON

PLACE NEW ORDER
key

Your API key

action

add

service

Service ID

link

Array of URLs to process

ordertype

Fresh Index or Re-Index

priority

Normal or Urgent

//Example request for placing an order

{
    "key": "your_api_key",
    "action": "add",
    "service": 1,
    "link": ["http://example1.com", "http://example2.com"],
    "ordertype": "Fresh Index",
    "priority": "Urgent"
}
                    

//Example response

{
    "status": "success",
    "order number": 116,
    "remaining balance": "50.00"
}
                    
STATUS ORDER
key

Your API key

action

status

Order

Order ID

//Example response

{
    "status": "Processing",
    "charge": "3.60",
    "start_count": 0,
    "remains": 0,
    "currency": "USD"
}
                    
USER BALANCE
key

Your API key

action

balance

//Example response

{
  "status": "success",
  "balance": "50.00",
  "currency": "USD"
}
                    
CHECK INDEX STATUS
key

Your API key

action

check_index_status

order_id

Order ID

//Example request for checking index status

{
    "key": "your_api_key",
    "action": "check_index_status",
    "order_id": 116
}

//Example response

{
    "status": "success",
    "indexed": 20,
    "not_indexed": 5,
    "total_urls": 25
}