Sign in

List questions for answers (batch)

documented

Get questions for a batch of answers.

POST /answers/{ids}/questionsAnswersno implementation yet0 runs
No 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}}\"}'
List questions for answers (batch) · Stack Exchange · OpenIntegrations