Send links to crawl straight from your software, script or CRM in one request. Available on paid packages.
The token is the access key to your account. It is in the dashboard, the โAPIโ section. Do not share it with anyone.
YOUR_TOKEN
| URL | https://aitunz.com/apisubmit.php |
| Method | POST |
| Authorization | Authorization: Bearer YOUR_TOKEN |
curl -X POST https://aitunz.com/apisubmit.php \
-H "Authorization: Bearer YOUR_TOKEN" \
-H "Content-Type: application/json" \
-d '{"urls":[
"https://site-1.com/page",
"https://site-2.com/post"
]}'
Or as a plain list (one link per line):
curl -X POST "https://aitunz.com/apisubmit.php?token=YOUR_TOKEN" \ --data-urlencode "urls=https://site-1.com/page https://site-2.com/post"
{ "ok": true, "added": 2, "credits": 998, "left": 998 }
added | how many links were accepted (duplicates not counted) |
credits | remaining account credits |
left | how many more you can send right now |