Bing Search
Search the web using Bing and get SERP results.
Pricing: 1 credit per call
curl -X POST "https://v3-api.texau.com/api/v1/search_bing" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"query": "best CRM software 2026",
"num_results": 42,
"page": 25,
"cache": true
}'
import requests
import json
url = "https://v3-api.texau.com/api/v1/search_bing"
headers = {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
data = {
"query": "best CRM software 2026",
"num_results": 42,
"page": 25,
"cache": true
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://v3-api.texau.com/api/v1/search_bing", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
},
body: JSON.stringify({
"query": "best CRM software 2026",
"num_results": 42,
"page": 25,
"cache": true
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"query": "best CRM software 2026",
"num_results": 42,
"page": 25,
"cache": true
}`)
req, err := http.NewRequest("POST", "https://v3-api.texau.com/api/v1/search_bing", bytes.NewBuffer(data))
if err != nil {
panic(err)
}
req.Header.Set("Content-Type", "application/json")
req.Header.Set("x-api-key", "YOUR_API_KEY")
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
panic(err)
}
defer resp.Body.Close()
fmt.Println("Response Status:", resp.Status)
}
require 'net/http'
require 'json'
uri = URI('https://v3-api.texau.com/api/v1/search_bing')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Post.new(uri)
request['Content-Type'] = 'application/json'
request['x-api-key'] = 'YOUR_API_KEY'
request.body = '{
"query": "best CRM software 2026",
"num_results": 42,
"page": 25,
"cache": true
}'
response = http.request(request)
puts response.body
{
"data": {
"results": [
{
"position": 42,
"title": "example_string",
"url": "example_string",
"description": "example_string"
}
],
"total_results": 42,
"query": "example_string"
},
"meta": {
"cache_hit": true,
"execution_time_ms": 42
}
}
{
"error": "Forbidden",
"message": "You don't have permission to access this resource",
"code": 403
}
{
"error": "Too Many Requests",
"message": "Rate limit exceeded. Please try again later",
"code": 429,
"retryAfter": 3600
}
POST
/search_bing
POST
API Key (header: x-api-key)
x-api-keystring
RequiredYour TexAu API key. Contact TexAu to obtain one.
Your TexAu API key. Contact TexAu to obtain one.
Content-Typestring
RequiredThe media type of the request body
Options: application/json
querystring
RequiredSearch query
num_resultsinteger
Number of results to return
pageinteger
Page number for pagination
Request Preview
Response
Response will appear here after sending the request
Authentication
header
x-api-keystring
RequiredAPI Key for authentication. Your TexAu API key. Contact TexAu to obtain one.
Body
application/json
querystring
RequiredSearch query
num_resultsinteger
Number of results to return
pageinteger
Page number for pagination
Responses
dataobject
resultsarray
positioninteger
titlestring
urlstring
descriptionstring
total_resultsinteger
querystring
metaobject
cache_hitboolean
execution_time_msinteger
messagestring
errorstring
apistring
limitinteger
currentinteger
Was this page helpful?
Last updated 2 weeks ago
Built with Documentation.AI