Get a question#

Once you have made a question you can use this endpoint to list these resources.

Request this GET endpoint:

/api/v1/questions/{question_id}

Responses

HTTP 200 code response

{
  "id": "string",
  "question": "string",
  "db_connection_id": "string"
}

Request example

 curl -X 'GET' \
'<host>/api/v1/questions/64dfa0b603f5134086f7090b' \
-H 'accept: application/json' \
-H 'Content-Type: application/json'

Response example

{
  "id": "64dfa0b603f5134086f7090b",
  "question": "what was the most expensive zip code to rent in Los Angeles county in May 2022?",
  "db_connection_id": "64dfa0e103f5134086f7090c"
}