Get philosophers

GET /philosophers

Get a list of all the greatest 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.

  • name string

    Name of the philosopher.

Responses

  • 200 application/json

    Response 200

    Hide response attributes Show response attributes object
  • bad input parameter

GET /philosophers
curl \
 -X GET https://philosapi.vercel.app/api/philosophers
Response examples (200)
[
  {
    "id": 42,
    "name": "string",
    "birth_place": "string",
    "stream_of_thought_id": 42,
    "period_id": 42,
    "resume": "string",
    "birth_year": 42,
    "dead_year": 42,
    "wiki": "string",
    "img_url": "string",
    "stream_of_thought_name": "string",
    "period_name": "string"
  }
]