Get stream of thought

GET /stream_of_thought

Get a list of all the stream of thought of these philosophers.

Query parameters

  • limit integer

    limit of elements to return

    Minimum value is 0.

  • offset integer(int32)

    number of element to skip

    Minimum value is 1.

  • sot string

    Stream of thought's name.

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
curl \
 -X GET https://philosapi.vercel.app/api/stream_of_thought
Response examples (200)
[
  {
    "id": 42,
    "name": "string"
  }
]