NetStone
Portable and modern .NET Lodestone API
Install / Use
/learn @xivapi/NetStoneREADME
NetStone

NetStone is a portable and modern .NET FFXIV Lodestone API.
What works
- [x] Characters
- [x] Character Search
- [x] FCs
- [x] FC Search
- [ ] PvP Teams
- [ ] PvP Team Search
- [x] Linkshell
- [x] Linkshell Search
- [x] CWLS
- [x] CWLS Search
Eorzea DB support is not planned.
Usage
Set up the client
If you want to use NetStone you need to create one instance of the LodestoneClient and use this instance for all your requests. Note that this operation downloads current definitions and can therefore take an unknown amount of time or even throw and exception.
Example Code
try{
var lodestoneClient = await LodestoneClient.GetClientAsync();
} catch(HttpRequestException ex){
...
}
Retrieve character information
Character information is fetched using the character's lodestone ID (the number contained in the Url). If the ID is not known to you, you can use the built in search functionality to look up a character by name and home world. If you need to fetch data for a specific character often it is best practice to save the Lodestone Id. Note that the search can have 0 results and that a character is null if the request failed.
Example code
try
{
//Get Lodestone Id if not known
var searchResponse = await lodestoneClient.SearchCharacter(new CharacterSearchQuery()
{
CharacterName = "Name Surname",
World = "Lich"
});
var lodestoneCharacter =
searchResponse?.Results
.FirstOrDefault(entry => entry.Name == "Name Surname");
string lodestoneId = lodestoneCharacter.Id;
//If Lodestone id is known
var lodestoneCharacter = await lodestoneClient.GetCharacter(lodestoneId);
} catch(HttpRequestException e) {
//Handle potential errors in web request
...
}
Related Skills
node-connect
343.1kDiagnose OpenClaw node connection and pairing failures for Android, iOS, and macOS companion apps
frontend-design
90.0kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
openai-whisper-api
343.1kTranscribe audio via OpenAI Audio Transcriptions API (Whisper).
qqbot-media
343.1kQQBot 富媒体收发能力。使用 <qqmedia> 标签,系统根据文件扩展名自动识别类型(图片/语音/视频/文件)。
