api
Wikipedia

How To Use

Endpoint

https://api.i-as.dev/api/wikipedia/list?page={value}

Response

{
  "articlesWithDescriptions": [
    {
      "type": "string",
      "ns": 0,
      "title": "string",
      "user": "string",
      "timestamp": "date",
      "comment": "string",
      "snippet": "string",
      "imageUrl": {url},
      "detailUrl": "url"
    },
    // More data
  ]
}

Endpoint Detail

https://api.i-as.dev/api//wikipedia/detail/{slug}

Response

{
  "title": "string",
  "snippet": "string",
  "imageUrl": "url",
  "fullUrl": "url"
}

Endpoint Search

https://api.i-as.dev/api//wikipedia/search?q={query}

Response

{
  "searchResultsWithDescriptions": [
    {
      "ns": "value",
      "title": "string",
      "pageid": "value",
      "snippet": "string",
      "imageUrl": "url",
      "detailUrl": "url"
    },
    // More data
  ]
}