Wikia is a C# library that makes it easy to access Wiki data.
Every wiki has its API accessible through URL: {wikidomain}/api/v1/.
For example:
- http://www.wikia.com/api/v1/
- http://yugioh.wikia.com/api/v1/
- http://naruto.wikia.com/api/v1/
- http://elderscrolls.wikia.com/api/v1/
For a quickstart, http://api.wikia.com/wiki/Quick_Start
For documentation, http://api.wikia.com/wiki/Documentation
PM> Install-Package wikia
// wiki domain
string domainUrl = "http://yugioh.wikia.com";
// Article endpoint
IWikiArticle articles = new WikiArticle(domainUrl);
// Get Yugioh Wiki new articles
var result = articles.NewArticles();
For a list of all endpoints, visit wiki api using {wikidomain}/api/v1/ format.
Example: For Yugioh Wiki Api endpoints, i'd use http://yugioh.wikia.com/api/v1/.
Notice the domain is "http://yugioh.wikia.com" and the suffix is "/api/v1/"
This project is licensed under the MIT License - see the LICENSE.md file for details.