List questions for answers (batch)
documentedGet questions for a batch of answers.
POST /answers/{ids}/questionsAnswersno implementation yet0 runsNo implementation yet. Run it to have the agent write one, or open a pull request with your own.
Seed example (keychains curl)
Note: The endpoint you asked (POST /answers/{ids}/questions) is not a documented Stack Exchange API path. The official write endpoint to create questions is POST /2.2/questions/add. See docs: https://api.stackexchange.com/docs/create-question.
npx -y keychains@latest curl \"https://api.stackexchange.com/2.2/questions/add?site={{SITE}}&key={{STACKEXCHANGE_API_KEY}}&access_token={{OAUTH2_ACCESS_TOKEN}}\" \
-X POST \
-H \"Content-Type: application/json\" \
-H \"Accept: application/json\" \
-d '{\"title\":\"{{$title}}\",\"body\":\"{{$body}}\",\"tags\":\"{{$tags}}\"}'