S

E

O

L

I

N

K

I

N

D

E

X

E

R

Boost visibility in
  • Google

  • Gemini

  • ChatGPT

  • Perplexity

and beyond

Links Indexer - Free Backlink Indexing API Documentation

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.

Authentication

All API requests require an api key. Include your key as the key parameter in each request.

Your API Key:

 6714218d6491b341e07fccbd420bc871 

Base URL

https://seolinkindexer.com/api/v1

1. Indexing List

Returns the list of submitted indexing batches along with their links and statuses.

Request:
POST https://seolinkindexer.com/api/v1
Body Parameters:
  • action = indexing-list (required)
  • key = your API key (required)
Success Response:
{
    "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"
                }
            ]
        }
    ]
}

2. Submit URLs (Bulk)

Submit multiple URLs for indexing with optional drip-feed scheduling.

Request:
POST https://seolinkindexer.com/api/v1
Body 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 Response:
{
    "success": "Links submitted successfully!"
}
Error Response (Insufficient Credits):
{
    "error": "Not enough credits to submit 10 links"
}

3. Get Balance

Returns the current balance and total indexing credits available for the user.

Request:
POST https://seolinkindexer.com/api/v1
Body Parameters:
  • action = balance (required)
  • key = your API key (required)
Success Response:
{
    "data": {
        "amount": 10.50,
        "currency": "$",
        "total_credits": 150,
        "used_credits": 25
    }
}

4. Available Status

pending submitted indexed 

General Error Responses

{
    "error": "The action field is required"
}
{
    "error": "Invalid action"
}
{
    "error": "Invalid api key"
}
{
    "error": "This credential is no longer"
}