Docs & Guides
Everything you need to submit links, read your results, and manage your account on IndexLaunch.
Getting Started
- Create an account and pick a credit package from the Packages page.
- Open your Dashboard and paste one link per line into the submission box — each line should be a full URL starting with
https://. - Click Queue for Indexing. Each link costs one credit and joins the crawl queue immediately.
- Watch the Submission History table on your dashboard — it updates live as each link resolves, no refresh needed.
Submission Statuses
Every link you submit moves through one of four statuses, shown as a colored badge in your Submission History:
- pending
- Just submitted and sitting in the crawl queue. Most submissions clear within a few minutes.
- indexed
- Successfully processed. Your Links Indexed count on the Settings page goes up by one for each.
- failed
- The attempt didn't succeed — usually because the page was unreachable, blocked crawlers, or returned an error. Fix the page and resubmit it as a new link.
- refunded
- A submission that stayed stuck in the queue for more than 7 days is automatically refunded — the credit is returned to your balance with no action needed from you.
Credits & Billing
Every plan is a one-time credit pack — 1 credit submits 1 link, and credits never expire.
Starter
1,000 credits · $50
Professional
3,500 credits · $150
Enterprise
5,000 credits · $200
Agency
10,000 credits · $350
Pricing shows in INR with Indian payment methods (UPI, cards, netbanking) for visitors in India, and in USD for everyone else — this is detected automatically, there's nothing to switch. Purchases are final, with one exception: credits spent on a link that's still stuck pending after 7 days are refunded automatically. See the Refunds & Cancellations page for full terms.
Account Settings
Everything under Settings takes effect immediately:
- Email Alerts / Indexing Updates / Product News — toggle which emails you receive independently.
- Timezone — controls how submission timestamps are displayed across your dashboard.
- Phone Number — used only to pre-fill Indian payment methods (UPI/cards) at checkout; it's never required to use the product.
Getting Help
Open a ticket from the Support page and pick the category that fits best:
Technical ProblemBilling & PaymentsAccount ManagementIndexing QuestionFeature SuggestionSomething Else
Response times depend on the priority you set when opening the ticket:
Low
48-72h
Medium
24-48h
High
12-24h
Urgent
2-4h
API Reference
Submit URLs programmatically instead of through the dashboard. Generate a key from Settings → API Access — the same credit balance and 500-URLs-per-request limit apply as the dashboard.
Request
POST https://indexlaunch.site/api/v1/submit
Authorization: Bearer il_live_xxxxxxxxxxxxxxxxxxxxxxxx
Content-Type: application/json
{
"urls": ["https://example.com/page-1", "https://example.com/page-2"]
}Response
{ "submitted": 2, "ids": ["j57...", "j58..."] }curl example
curl -X POST https://indexlaunch.site/api/v1/submit \
-H "Authorization: Bearer il_live_xxxxxxxxxxxxxxxxxxxxxxxx" \
-H "Content-Type: application/json" \
-d '{"urls": ["https://example.com/new-post"]}'401 missing/invalid/revoked key · 403 suspended account · 400 bad request or not enough credits. There's no separate rate limit yet beyond the 500-URL-per-request cap and your credit balance.
Want more on how indexing actually works? Read our guides.