GET
/
v1
/
profiles
/
{profileId}
Retrieve participant profile
curl --request GET \
  --url https://api-staging.respondent.io/v1/profiles/{profileId} \
  --header 'x-api-key: <x-api-key>' \
  --header 'x-api-secret: <x-api-secret>'
{
  "id": "<string>",
  "userId": "<string>",
  "firstName": "<string>",
  "lastInitial": "<string>",
  "picture": "<string>",
  "jobTitle": "<string>",
  "jobFunctions": [
    "accountingAuditing"
  ],
  "linkedinUrl": "<string>",
  "skills": [],
  "topics": [
    {
      "id": "<string>",
      "name": "<string>"
    }
  ],
  "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",
  "age": "<string>",
  "educationLevel": "somehighschool",
  "ethnicity": "americanindianalaskannative",
  "householdIncome": "<30000",
  "industry": [
    "<string>"
  ],
  "seniorityLevel": "unpaid",
  "gdprDeletedAt": "<string>",
  "socialLinks": {}
}

Headers

x-api-key
string
required
x-api-secret
string
required

Path Parameters

profileId
string
required

Response

200 - application/json

The response is of type object.