GET parameters
Written by
You can use GET parameters to add attributes to a form's URL
-
Get the question ID and response ID (for multiple choice questions).
-
Add a question mark (
?
) to the form URL. After it, specify the parameter. The format of the parameter depends on the question type:- For questions with an input field, such as
Short text
,Mail
:<question ID>=<response text>
+
sign, e.g.:https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_short_text_1685088=Planet+Earth
- For questions with response options like
One answer
orMultiple answers
:<question ID>=<response ID>
https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_choices_1685184=1958524
- For questions of the
Date
type:<question id>=YYYY-MM-DD
https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_date_1685200=2020-01-27
- For
Yes / No
questions:<question id>=True
https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_boolean_1685199=True
- For
Rate on a scale
questions.
Choose a response by one criterion:<question ID>=<response ID>
<question ID>[<X criterion ID>]=<X response ID>&<question ID>[<Y criterion ID>]=<Y response ID>
https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_choices_1686274=231035_231038
https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_choices_1686274[231034]=231034_231037&answer_choices_1686274[231035]=231035_231038
- For questions with an input field, such as
-
To fill in multiple form fields at once, add multiple GET parameters separated by
&
.https://forms.yandex.com/u/5e2ac2d850bdb705c38ed14f/?answer_short_text_1685088=John+Smith&answer_choices_1685184=1958524
URLs may contain no more than 32000 characters, the remaining data is discarded. Keep this in mind when making long queries.