People Search (V2)
Search across 700M+ LinkedIn profiles by account filters (industry, domain, company) and contact filters (job title, location).
Pricing: 0.1 credits per result returned.
If you request size: 100 and get 100 results, you are charged 10 credits.
curl -X POST "https://v3-api.texau.com/api/v1/people_search" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"account": {
"industry": [
"software development"
]
},
"contact": {
"jobTitle": [
"founder"
],
"location": [
"united states"
]
},
"page": 0,
"size": 10
}'
import requests
import json
url = "https://v3-api.texau.com/api/v1/people_search"
headers = {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
data = {
"account": {
"industry": [
"software development"
]
},
"contact": {
"jobTitle": [
"founder"
],
"location": [
"united states"
]
},
"page": 0,
"size": 10
}
response = requests.post(url, headers=headers, json=data)
print(response.json())
const response = await fetch("https://v3-api.texau.com/api/v1/people_search", {
method: "POST",
headers: {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
},
body: JSON.stringify({
"account": {
"industry": [
"software development"
]
},
"contact": {
"jobTitle": [
"founder"
],
"location": [
"united states"
]
},
"page": 0,
"size": 10
})
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
"bytes"
"encoding/json"
)
func main() {
data := []byte(`{
"account": {
"industry": [
"software development"
]
},
"contact": {
"jobTitle": [
"founder"
],
"location": [
"united states"
]
},
"page": 0,
"size": 10
}`)
req, err := http.NewRequest("POST", "https://v3-api.texau.com/api/v1/people_search", 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/people_search')
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 = '{
"account": {
"industry": [
"software development"
]
},
"contact": {
"jobTitle": [
"founder"
],
"location": [
"united states"
]
},
"page": 0,
"size": 10
}'
response = http.request(request)
puts response.body
{
"content": [
{}
],
"totalElements": 83001,
"totalPages": 25,
"numberOfElements": 10,
"first": true,
"last": true,
"size": 42,
"number": 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
/people_search
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
pageinteger
RequiredPage number (zero-based)
sizeinteger
RequiredResults per page (1-100)
Min: 1 • Max: 100
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
pageinteger
RequiredPage number (zero-based)
sizeinteger
RequiredResults per page (1-100)
Responses
contentobject[]
totalElementsinteger
totalPagesinteger
numberOfElementsinteger
Number of results in this page (used for billing)
firstboolean
lastboolean
sizeinteger
numberinteger
messagestring
errorstring
apistring
limitinteger
currentinteger
Was this page helpful?
Last updated 2 weeks ago
Built with Documentation.AI