Lookup Lists
Retrieve lookup values
Retrieve all enumerated lookup values (age groups, education levels, genders, income brackets, and more). Use these values when configuring demographic targeting criteria on projects.
GET
/
v1
/
lookups
Retrieve lookup values
curl --request GET \
--url https://api-staging.respondent.io/v1/lookups \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-secret: <x-api-secret>'import requests
url = "https://api-staging.respondent.io/v1/lookups"
headers = {
"x-api-key": "<x-api-key>",
"x-api-secret": "<x-api-secret>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-api-key': '<x-api-key>', 'x-api-secret': '<x-api-secret>'}
};
fetch('https://api-staging.respondent.io/v1/lookups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-staging.respondent.io/v1/lookups",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>",
"x-api-secret: <x-api-secret>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-staging.respondent.io/v1/lookups"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-api-secret", "<x-api-secret>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-staging.respondent.io/v1/lookups")
.header("x-api-key", "<x-api-key>")
.header("x-api-secret", "<x-api-secret>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-staging.respondent.io/v1/lookups")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-api-secret"] = '<x-api-secret>'
response = http.request(request)
puts response.read_body{
"ageGroup": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"companySize": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"country": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"educationLevel": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"employmentStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"ethnicity": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"gender": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"householdIncome": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"industries": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"jobTitles": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"skills": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"topics": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"seniorityLevel": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"jobFunction": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"income": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"programmingLanguage": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"browser": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"smartphoneOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"tabletOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"computerOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"relationshipStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"language": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"livingSituation": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"pet": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"keyQualifier": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"screenerResponseStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"typeOfResearch": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"marketType": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"researchMethodology": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
]
}Query Parameters
Available options:
marketType, researchMethodology, typeOfResearch, ageGroup, companySize, country, educationLevel, employmentStatus, ethnicity, gender, householdIncome, industries, jobFunction, jobTitles, keyQualifier, seniorityLevel, skills, topics Available options:
project, profile Available options:
en Response
200 - application/json
Last modified on March 18, 2026
Was this page helpful?
Previous
Create webhookRegister a webhook URL to receive real-time event notifications. Each team can have **one active webhook**, which receives all events; registering a new one deactivates the previous webhook. Failed deliveries are retried up to 5 times at 10-minute intervals.
Next
⌘I
Retrieve lookup values
curl --request GET \
--url https://api-staging.respondent.io/v1/lookups \
--header 'x-api-key: <x-api-key>' \
--header 'x-api-secret: <x-api-secret>'import requests
url = "https://api-staging.respondent.io/v1/lookups"
headers = {
"x-api-key": "<x-api-key>",
"x-api-secret": "<x-api-secret>"
}
response = requests.get(url, headers=headers)
print(response.text)const options = {
method: 'GET',
headers: {'x-api-key': '<x-api-key>', 'x-api-secret': '<x-api-secret>'}
};
fetch('https://api-staging.respondent.io/v1/lookups', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api-staging.respondent.io/v1/lookups",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <x-api-key>",
"x-api-secret: <x-api-secret>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api-staging.respondent.io/v1/lookups"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("x-api-key", "<x-api-key>")
req.Header.Add("x-api-secret", "<x-api-secret>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api-staging.respondent.io/v1/lookups")
.header("x-api-key", "<x-api-key>")
.header("x-api-secret", "<x-api-secret>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api-staging.respondent.io/v1/lookups")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<x-api-key>'
request["x-api-secret"] = '<x-api-secret>'
response = http.request(request)
puts response.read_body{
"ageGroup": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"companySize": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"country": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"educationLevel": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"employmentStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"ethnicity": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"gender": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"householdIncome": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"industries": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"jobTitles": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"skills": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"topics": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"seniorityLevel": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"jobFunction": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"income": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"programmingLanguage": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"browser": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"smartphoneOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"tabletOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"computerOS": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"relationshipStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"language": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"livingSituation": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"pet": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"keyQualifier": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"screenerResponseStatus": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"typeOfResearch": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"marketType": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
],
"researchMethodology": [
{
"code": "<string>",
"value": "<string>",
"weight": 123,
"disabled": true
}
]
}