-
SEO Learning Center
Broaden your SEO knowledge with resources for all skill levels.
-
The Beginner's Guide to SEO
If you're brand new to SEO, start here.
-
SEO Q&A
Get answers from the Moz Community.
-
Free Downloads and More
Quick access to whitepapers, reports, guides, webinars, and case studies.
-
Help Hub
Learn how to use Moz products.
-
Community & Events
Connect with over 600k online marketers.
-
SEO Training
Instructor-led classes and seminars
Async
Fetch Async Call
Fetch an async_call by ID to retrieve the result or error. If the call has not completed yet, both result and error will be null. Once the status of the call is complete, only one of result or error will be non-null.
Upon retrieving an async_call that has been completed, the TTL will be updated to 20 seconds.
While every action has a different processing time (and the documentation for each will suggest a polling interval), it is recommended to not poll the status of a call more frequently than once every 5 seconds.
JSON-RPC Method:
async.call.lookupid
string
The ID of the async_call to lookup. This is the async_call.id returned by the asynchronous action that started the request.
1{
2 "id": "c3397e5a-ce31-42fb-8607-ed40487aea18"
3}async_call
object
Represents an asynchronous request. The result and error properties will be null if the call is still in progress. Once the status is "complete", only one of result or error will be non-null depending on whether the request was successful.
Does not require any quota.