WikiHow Search

WikiHow is an online wiki-style publication featuring how-to articles and quizzes on a variety of topics. Founded in 2005 by Internet entrepreneur Jack Herrick, its aim is to create an extensive database of instructional content, using the wiki model of open collaboration to allow users to add, create, and modify content.

Base URL

"https://openapi-idk8.onrender.com/"

Search Endpoint

GET `/wikihow/:searchKeyword`

Description: Searches for a how-to article on WikiHow based on the provided search keyword.

Path Parameters

  • searchKeyword (required): The keyword to search for in WikiHow articles.

Sample Request

GET `https://openapi-idk8.onrender.com/wikihow/cooking`

Sample Response

{
  "api_information": [
    {
      "api_name": "WikiHow",
      "description": "WikiHow is an online wiki-style publication featuring how-to articles and quizzes on a variety of topics. Founded in 2005 by Internet entrepreneur Jack Herrick, its aim is to create an extensive database of instructional content, using the wiki model of open collaboration to allow users to add, create, and modify content.",
      "author": "OpenAPI"
    }
  ],
  "title": "How to Cook a Delicious Meal",
  "description": "Learn how to cook a delicious meal step by step with this comprehensive guide.",
  "coauthor_byline": "Co-authored by Chef John. Last updated on June 21, 2024.",
  "last_updated": "Last updated on June 21, 2024",
  "article_info": "This article was co-authored by Chef John, a professional chef with over 10 years of experience.",
  "introduction": "Cooking a delicious meal is an art that anyone can master with the right guidance...",
  "steps": [
    {
      "number": 1,
      "title": "Gather Ingredients",
      "content": "First, gather all the ingredients needed for the meal...",
      "image": "https://wikihow.com/images/thumb/1/1a/Cooking_Ingredients.jpg/500px-Cooking_Ingredients.jpg"
    },
    {
      "number": 2,
      "title": "Preparation",
      "content": "Prepare the ingredients by washing, chopping, and marinating as necessary...",
      "image": "https://wikihow.com/images/thumb/5/5b/Cooking_Preparation.jpg/500px-Cooking_Preparation.jpg"
    },
    ...
  ]
}

The response includes detailed information about the searched WikiHow article, including title, description, co-author byline, last updated date, article information, introduction, and steps.

Error Handling

404 Not Found: Returned when no results are found for the provided search keyword.

{
  "api_information": [
    {
      "api_name": "WikiHow",
      "description": "WikiHow is an online wiki-style publication featuring how-to articles and quizzes on a variety of topics. Founded in 2005 by Internet entrepreneur Jack Herrick, its aim is to create an extensive database of instructional content, using the wiki model of open collaboration to allow users to add, create, and modify content.",
      "author": "OpenAPI"
    }
  ],
  "error": "No results found"
}

500 Internal Server Error: Returned when there is an issue processing the request.

{
  "api_information": [
    {
      "api_name": "WikiHow",
      "description": "WikiHow is an online wiki-style publication featuring how-to articles and quizzes on a variety of topics. Founded in 2005 by Internet entrepreneur Jack Herrick, its aim is to create an extensive database of instructional content, using the wiki model of open collaboration to allow users to add, create, and modify content.",
      "author": "OpenAPI"
    }
  ],
  "error": "An error occurred while fetching the data"
}