S
E
O
L
I
N
K
I
N
D
E
X
E
R
Links Indexer - Free Backlink Indexing provides fast indexing services for Google. The API supports submitting individual or bulk URLs, checking indexing status, and retrieving balance information.
All API requests require an api key. Include your key as the key parameter in each request.
Your API Key:
6714218d6491b341e07fccbd420bc871
https://seolinkindexer.com/api/v1
Returns the list of submitted indexing batches along with their links and statuses.
Request:POST https://seolinkindexer.com/api/v1Body Parameters:
action = indexing-list (required)key = your API key (required){
"data": [
{
"id": 1,
"name": "My Batch",
"created_at": "2024-07-28T14:00:00Z",
"links": [
{
"id": 1,
"batch_id": 1,
"url": "https://example.com",
"status": "indexed",
"indexed_at": "2024-07-29T14:00:00Z"
}
]
}
]
}
Submit multiple URLs for indexing with optional drip-feed scheduling.
Request:POST https://seolinkindexer.com/api/v1Body Parameters:
action = url-submit (required)key = your API key (required)name = Batch name (required)dripfeed_days = Number of days to drip feed links (required, integer)links = URLs separated by newline (required){
"success": "Links submitted successfully!"
}
Error Response (Insufficient Credits):
{
"error": "Not enough credits to submit 10 links"
}
Returns the current balance and total indexing credits available for the user.
Request:POST https://seolinkindexer.com/api/v1Body Parameters:
action = balance (required)key = your API key (required){
"data": {
"amount": 10.50,
"currency": "$",
"total_credits": 150,
"used_credits": 25
}
}
pending submitted indexed
{
"error": "The action field is required"
}
{
"error": "Invalid action"
}
{
"error": "Invalid api key"
}
{
"error": "This credential is no longer"
}