API Documentation

API Documentation

Documentation for the current GoAnyAPI endpoints.

Test API

GoAnyAPI Documentation

This documentation covers the currently available endpoints and the shared authentication, credit, and response conventions behind them.

Current documented endpoints:

  1. Credit Balance API
  2. Reverse AdSense API
  3. Adsense Domain API
  4. Adsense PubId API
  5. Domain Rating(DR) API
  6. Backlinks API
  7. Keyword Difficulty (KD) API
  8. Keyword Generator API
  9. Google Autocomplete API
  10. Bing Autocomplete API
  11. SERP API
  12. Bing SERP API
  13. Google Intitle API
  14. Google Site Search API
  15. Traffic API
  16. Ads Transparency API
  17. Transparency Keyword API
  18. Transparency Domain API
  19. Transparency Creative IDs API
  20. Ads Transparency Statistics API
  21. Advertiser Search API
  22. Domain Search API
  23. Advertiser Statistics API
  24. Domain Statistics API
  25. Title Search API
  26. Domain Titles API
  27. Domain Image Ads API
  28. Title Countries API
  29. Title Image Ads API
  30. Keyword Suggestions API
  31. Keyword Search Volume API
  32. Domain Rating History API

More endpoints can be added on the same product layer over time.

Authentication

All requests require an API key.

Authorization: Bearer YOUR_API_KEY

Common Response

{
  "code": "ok",
  "message": "ok",
  "data": {}
}

Error Codes

HTTP StatuscodeDescription
400invalid_paramsInvalid request parameters
401missing_api_keyAuthorization header is required
401invalid_api_keyAPI key is invalid
402insufficient_creditsInsufficient credits
429rate_limit_exceededRate limit exceeded
500internal_errorInternal server error

Rate Limiting

When rate limiting is enabled, the API can return 429 Too Many Requests.

  • Error code: rate_limit_exceeded
  • Response header: Retry-After
{
  "code": "rate_limit_exceeded",
  "message": "API rate limit exceeded. Please retry shortly.",
  "details": {
    "scope": "user",
    "limitPerSecond": 5
  }
}

Endpoints

APIEndpointCurrent Cost
Credit Balance APIGET /api/v1/credits/balanceFree
Traffic APIGET /api/v1/traffic2-6 credits
DR APIGET /api/v1/dr2 credits
Domain Rating History APIGET /api/v1/dr-history2 credits per returned month
Backlinks APIGET /api/v1/backlink4 credits
Keyword Difficulty (KD) APIGET /api/v1/keyword-difficulty3 credits
Keyword Generator APIGET /api/v1/keyword-generator3 credits
Keyword Suggestions APIGET /api/v1/keyword-suggestions1 credit
Keyword Search Volume APIGET /api/v1/keyword-search-volume3 credits
Google Autocomplete APIGET /api/v1/google-autocomplete1 credit
Bing Autocomplete APIGET /api/v1/bing-autocomplete1 credit
SERP APIGET /api/v1/serp2 credits
Bing SERP APIGET /api/v1/bing-serp2 credits
Google Intitle APIGET /api/v1/google-intitle4 credits
Google Site Search APIGET /api/v1/google-site-search4 credits
Adsense APIGET /api/v1/adsense3 credits
Ads Transparency APIGET /api/v1/transparency4 credits
Ads Transparency Statistics APIGET /api/v1/ads-statistics5 credits

Next Steps