Answer Box Results

Sometimes if you make a operation (transform currency, calculate sum of two numbers and so on) in the google search query you will get the result in a separate box. This box can be found in the answer_box property, if it exists.

Answer Box Results JSON
{
                ...
                'answer-box': [
                    {
                      'type': 'String - Type of answer box (calculator, organic result, converter, etc.)',
                      'result': 'String - When the answer box can be inlined, the actual answer.'
                    },
                ]
                ...
}
Answer Box Results examples

Results for q:"pi"

Answer Box Results example
GET external-link
https://api.searchdata.io/v1?engine=google&api_key=YOUR_API_KEY&q=pi
Code to integrate
external-link
Json Example external-link
{
    ...
	"answer_box": {
		"type": "calculator_result",
		"result": "3.14159265359"
	},
    ...
}