1. Supplier API
  • Supplier API
    • Guides
    • Get Global Definitions
      GET
    • Question Library Lookup
      GET
    • Question Library Answer Lookup
      GET
    • Get Available Surveys (all live surveys)
      GET
    • Get Available Surveys By Id
      GET
    • Get Survey Transactions Data
      GET
    • Get Survey Stats
      GET
  • Schemas
    • Sample Schemas
      • Pet
      • Category
      • Tag
  1. Supplier API

Question Library Lookup

GET
https://supplierapi.survey-says.community/api/v1/QuestionLibrary/AllQuestions/{Country Key}/{Language}
This API enables suppliers to retrieve a list of all questions associated with a specified country and language (as provided in the request). These questions serve as survey criteria and assist in matching user profiles to the survey requirements.

Request

Path Params

Header Params

Responses

🟢200OK
application/json
Body

Example
{
    "apiStatus": "success",
    "msg": "Questions are successfully fetched",
    "result": [
        {
            "questionId": 2814,
            "questionText": "What is your age?",
            "questionKey": "AGE",
            "questionType": "Numeric Open End",
            "language": "ENGLISH",
            "questionCategory": [
                "Demographic"
            ]
        },
        {
            "questionId": 2815,
            "questionText": "Are you...?",
            "questionKey": "GENDER",
            "questionType": "Single Punch",
            "language": "ENGLISH",
            "questionCategory": [
                "Demographic"
            ]
        }
    ]
}
Previous
Get Global Definitions
Next
Question Library Answer Lookup
Built with