API Endpoint

The Retrieve API endpoint allows you to transform web pages into APIs by scraping and manipulating data. This documentation provides a comprehensive guide on how to use the Retrieve API effectively.

If you need any support, have feedback, or just want to hang out and chat with the development team and other developers in our community, join us on Discord.

Endpoint URL

To access the Retrieve API, use the following URL:

https://instantapi.ai/api/retrieve/

HTTP Methods

The Retrieve API supports the following HTTP methods:

  • POST (form-data): Use this method for form submissions.
  • POST (raw-JSON): Use this method for sending structured JSON data.

Choose the method that best fits your use case.

Required Parameters

The Retrieve API accepts several parameters. Below is a table detailing each parameter, its requirement status, description, type, and an example.

ParameterRequiredDescriptionTypeExample
webpage_urlYesThe URL of the web page to be scraped. Also supports Google SERP.Stringhttps://example.com/ or https://www.google.com/search?q=search+query+here
api_method_nameYesA user-defined name for the API action. This should be descriptive to guide the AI in interpreting the task.StringgetUserData
api_response_structureYesThe expected structure of the APIs response, defined in JSON format. Specify explicit requirements or allow the AI to infer details.String{"response": {"name": "<the name of the user>", "email": "<the email address of the user>"}}
api_keyYesYour InstantAPI.ai API key.StringGet your API key
api_parametersNoAdditional user-defined parameters for the API method, defined in JSON format. These provide additional context, but do not override the API method name and response structure.String{"user_id": "12345"}
country_codeNoSpecifies the country code for premium web proxy, or sets the Google SERP country. Defaults to country of web page URL, or ‘us’ as fallback, if not provided.Stringus
verboseNoIf set to true, the response will include the full HTML content of the scraped webpage.Booleantrue
wait_for_xpathNoA valid XPath within the web page to wait for specific elements to load. This is optional but can help with certain web pages, such as slow loading scripts, or complex JavaScript web apps.String.some-class-name or #some-element-id
enable_javascriptNoIf set to false, JavaScript rendering will be disabled.Booleantrue
link_extractNoIf set to true, the endpoint enables link extraction mode. See Links by Condition for usage example.Booleantrue
cache_ttlNoThe cache time-to-live (in seconds). Minimum 60, maximum 86400.Integer86400
serp_limitNoThe number of search engine results. Minimum 1, maximum 10. Defaults to 5.Integer5
serp_siteNoThe domain name to restrict search engine results to. Defaults to none (no restriction).Stringexample.com
serp_page_numNoThe page number of the search engine results.Integer1

API Response

The API will return a JSON object based on the specified api_response_structure. If the verbose parameter is set to true, the response will also include the full HTML content under the key verbose_full_html.

Example Response

{
  "response": {
    "name": "John Doe",
    "email": "john.doe@example.com"
  },
  "verbose_full_html": "<html>...</html>"
}

If any required parameters are missing or an error occurs, the API will return a JSON object with an error message.

Example Error Response

{
  "error": true,
  "reason": "Missing required parameters. Please check and try again with required parameters."
}

Best Practices

Descriptive Naming

Use clear and descriptive names for api_method_name to guide the AI effectively. For example, prefer getUserData over getData.

Detailed Response Structure

Clearly define the api_response_structure to ensure the AI understands your needs. Specificity leads to more accurate responses.

Contextual Parameters

Utilize api_parameters to provide additional context, helping the AI generate more accurate outputs.

Optimization Tips

Minimize Token Usage

The AI model’s latency is influenced by the length of the output. Be concise in your requests to improve response time.

Use Premium Proxies Judiciously

The service defaults to the quickest scraping method. Use country-specific premium web proxies only when necessary to avoid latency.

Leveraging AI Capabilities

Creative Output Requirements

Be creative with your output requirements. The AI can handle various tasks, including summarization and sentiment analysis.

Inference and Analysis

The AI can infer information and perform analytical tasks. Specify outputs that require deeper understanding or analysis.

Limitations

Error Handling

If required parameters are missing or an error occurs, the API will return an error message. It is recommended to retry up to 5 times before failing due to cycling in and out of premium web proxies.

AI Interpretations

While the AI is powerful, it may not always interpret requests perfectly. Providing clear, detailed instructions will yield the best results.