For developers

API, submit links from your own tools

Send links to crawl straight from your software, script or CRM in one request. Available on paid packages.

1. Your token

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

2. Endpoint

URLhttps://aitunz.com/apisubmit.php
MethodPOST
AuthorizationAuthorization: Bearer YOUR_TOKEN

3. Example (curl)

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"

4. Response

{ "ok": true, "added": 2, "credits": 998, "left": 998 }
addedhow many links were accepted (duplicates not counted)
creditsremaining account credits
lefthow many more you can send right now

5. Important

โ† To dashboard