GET
/
v1
/
team-respondents
Search past participants
curl --request GET \
  --url https://api-staging.respondent.io/v1/team-respondents
{
  "totalResults": 123,
  "page": 1,
  "pageSize": 50,
  "results": [
    {
      "profileId": "<string>",
      "userId": "<string>",
      "firstName": "<string>",
      "lastInitial": "<string>",
      "jobTitle": "<string>",
      "linkedinUrl": "<string>",
      "skills": [],
      "company": "<string>",
      "companySize": "selfemployed",
      "location": [
        {
          "city": {
            "id": "<string>",
            "country": "AF",
            "city": "<string>",
            "state": "<string>",
            "formattedAddress": "<string>",
            "administrative_area_level_1": "<string>",
            "postal_code": "<string>",
            "locality": "<string>",
            "location": {
              "latitude": 123,
              "longitude": 123
            },
            "zip": "<string>"
          },
          "zipcode": null,
          "state": "<string>",
          "loc": {
            "type": "<string>",
            "coordinates": [
              123
            ]
          }
        }
      ],
      "gender": "male",
      "educationLevel": "somehighschool",
      "ethnicity": "americanindianalaskannative",
      "householdIncome": "<30000",
      "industry": [
        "<string>"
      ],
      "seniorityLevel": "unpaid",
      "source": "marketplace",
      "lastPaidAt": "<string>",
      "socialLinks": {}
    }
  ]
}

Query Parameters

page
number
default:1

Specifies which page of results to return

pageSize
number
default:50

Number of records to return per page

includeCount
boolean
default:false

If true, includes the total count of records

name
string
jobTitle
string
lastPaidAt
string
projectIds
string[]
source
enum<string>
Available options:
marketplace,
recruited,
invited
externalResearcherId
string
externalTeamId
string
externalCompanyId
string
sortBy
enum<string>
default:mostrecent
Available options:
mostrecent,
leastrecent,
name

Response

200 - application/json

The response is of type object.