Below is the http request for the check domain availability to the HTTP API of ResellerClub:
https://test.httpapi.com/api/domains/available.json?auth-userid=166694&auth-password=span2012&domain-name=prasadvemala&domain-name=prasadvemala2&tlds=com&tlds=com
Below is the response from it:
{"prasadvemala.com":{"status":"available","classkey":"domcno"},"prasadvemala2.com":{"status":"available","classkey":"domcno"}}
What is the simplest way to parse this response in C#?
IMO, Json.net is best for quick and dirty Json parsing:
It’s avaliable as a nuget package too.
EDIT
If you want to enumerate the entire response: