https://github.com/fablecode/wikia
Wikia is a NuGet library that makes it easy to access the wikia api
https://github.com/fablecode/wikia
c-sharp nuget-package visual-studio-team-services wikia
Last synced: 22 days ago
JSON representation
Wikia is a NuGet library that makes it easy to access the wikia api
- Host: GitHub
- URL: https://github.com/fablecode/wikia
- Owner: fablecode
- License: mit
- Created: 2017-07-08T10:54:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-30T10:41:45.000Z (almost 8 years ago)
- Last Synced: 2025-10-22T10:12:04.401Z (7 months ago)
- Topics: c-sharp, nuget-package, visual-studio-team-services, wikia
- Language: C#
- Homepage:
- Size: 1.4 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

# Wikia
Wikia is a C# library that makes it easy to access Wiki data.
## How?
Every wiki has its API accessible through URL: {wikidomain}/api/v1/.
For example:
1. [http://www.wikia.com/api/v1/](http://www.wikia.com/api/v1/)
2. [http://yugioh.wikia.com/api/v1/](http://yugioh.wikia.com/api/v1/)
3. [http://naruto.wikia.com/api/v1/](http://naruto.wikia.com/api/v1/)
4. [http://elderscrolls.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
## NuGet
PM> Install-Package wikia
## Quickstart
```csharp
// wiki domain
string domainUrl = "http://yugioh.wikia.com";
// Article endpoint
IWikiArticle articles = new WikiArticle(domainUrl);
// Get Yugioh Wiki new articles
var result = articles.NewArticles();
```
## Endpoints
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/](http://yugioh.wikia.com/api/v1/).
Notice the domain is "http://yugioh.wikia.com" and the suffix is "/api/v1/"
## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE) file for details.