LinkedIn Reference Data
Returns all valid filter labels for lead_search. Use this to
populate dropdowns or validate filter values before submitting a search.
No external API call is made — data is served from an in-memory catalog.
Pricing: Free (0 credits).
curl -X GET "https://v3-api.texau.com/api/v1/search_reference_data" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY"
import requests
import json
url = "https://v3-api.texau.com/api/v1/search_reference_data"
headers = {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
response = requests.get(url, headers=headers)
print(response.json())
const response = await fetch("https://v3-api.texau.com/api/v1/search_reference_data", {
method: "GET",
headers: {
"Content-Type": "application/json",
"x-api-key": "YOUR_API_KEY"
}
});
const data = await response.json();
console.log(data);
package main
import (
"fmt"
"net/http"
)
func main() {
req, err := http.NewRequest("GET", "https://v3-api.texau.com/api/v1/search_reference_data", nil)
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_reference_data')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
request = Net::HTTP::Get.new(uri)
request['Content-Type'] = 'application/json'
request['x-api-key'] = 'YOUR_API_KEY'
response = http.request(request)
puts response.body
{
"seniority": [
"CXO",
"Director",
"Entry Level",
"Senior",
"Vice President"
],
"companySize": [
"Self-employed",
"1-10",
"11-50",
"51-200",
"201-500",
"501-1000",
"1001-5000",
"5001-10000",
"10001+"
],
"functions": [
"Accounting",
"Engineering",
"Finance",
"Marketing",
"Sales"
],
"industries": [
"Accounting",
"Banking",
"Software Development"
],
"yearsOfExperience": [
"Less than 1 year",
"1 to 2 years",
"3 to 5 years",
"6 to 10 years",
"More than 10 years"
],
"yearsAtCurrentCompany": [
"Less than 1 year",
"1 to 2 years",
"3 to 5 years",
"6 to 10 years",
"More than 10 years"
],
"profileLanguages": {
"English": "en",
"French": "fr",
"German": "de",
"Spanish": "es"
}
}
{
"error": "Forbidden",
"message": "You don't have permission to access this resource",
"code": 403
}
GET
/search_reference_data
GET
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.
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.
Responses
senioritystring[]
Valid seniority level labels.
companySizestring[]
Valid company headcount range labels.
functionsstring[]
Valid job function labels.
industriesstring[]
Valid industry labels (434 entries).
yearsOfExperiencestring[]
Valid experience range labels.
yearsAtCurrentCompanystring[]
Valid tenure range labels.
profileLanguagesobject
Map of language label to language code.
messagestring
Was this page helpful?
Last updated 2 weeks ago
Built with Documentation.AI