Get stream of thought by ID.

GET /stream_of_thought/{streamOfThoughtID}

Get a stream of thought with the ID.

Path parameters

Responses

  • 200 application/json

    Response 200

    Hide response attributes Show response attributes object
    • id integer Required

      The ID of the work.

    • name string Required

      stream of thought's name.

  • bad input parameter

GET /stream_of_thought/{streamOfThoughtID}
curl \
 -X GET https://philosapi.vercel.app/api/stream_of_thought/15
Response examples (200)
[
  {
    "id": 42,
    "name": "string"
  }
]