Linked Questions

0 votes
1 answer
952 views

I am currently trying to parse the JSON data that I get back from the IEX api, which consists of stocks and their information. The problem I am running into is that depending on which stocks/symbols (...
Thijs van der Heijden's user avatar
0 votes
2 answers
399 views

"Result": { "AKJB0000001": { "BANK": "AKOLA JANATA COMMERCIAL COOPERATIVE BANK", "IFSC": "AKJB0000001", "BRANCH": "RTGS-HO", "ADDRESS": "JANVAIBHAV,OLD COTTON ...
Tushar Kshirsagar's user avatar
1 vote
1 answer
626 views

I'm getting JSON from an API, each domain like Google, and Facebook will be dynamic. I'm struggling to access the JSON to then put on a webpage, normally APIs are no issue, but the fact its dynamic is ...
MattHodson's user avatar
0 votes
2 answers
748 views

I have a JSON file I am trying to deserialize, but there is a tag inside the items array that's changing, so how can this be specified in the class description, see class description I have now below. ...
Magne Brenås's user avatar
0 votes
0 answers
51 views

What should be the class for de-serializing this json? { "_attachments": { "Test.png": { "content_type": "application/octet-stream", "digest": "sha1-wGqfYwROlnGdNmiVIEpiTKHTm5I=", ...
Vasu Inukollu's user avatar
0 votes
0 answers
47 views

I'm trying to deserialize this piece of JSON into C# (The outer string increases to the hundreds): { "1": { "name": "AK-47 | Aquamarine Revenge (Battle-Scarred)", "price": 12.64, "sold":...
multikus's user avatar
1204 votes
30 answers
1.2m views

Is there a way to deserialize JSON content into a C# dynamic type? It would be nice to skip creating a bunch of classes in order to use the DataContractJsonSerializer.
jswanson's user avatar
  • 16.5k
44 votes
5 answers
116k views

I have this string: [{ "processLevel" : "1" , "segments" : [{ "min" : "0", "max" : "600" }] }] I'm deserializing the object: ...
ohadinho's user avatar
  • 7,172
3 votes
4 answers
902 views

I have a JSON data that looks like this: { "Item1": { "Field1": "Val1", "Field2": "Val2" }, "Item2": { &...
user626528's user avatar
  • 14.5k
0 votes
2 answers
1k views

I've read numerous threads asking similar questions but have been unable to tie it all together. I have an API feeding a string here: https://apiv2.bitcoinaverage.com/constants/exchangerates/local ...
Sterlingz's user avatar
0 votes
1 answer
547 views

I'm trying to parse a JSON in C# with Newtonsoft.Json component. The JSON I get is this: [ { "id": "2", "title": "First Title", "image": "550x346_442.jpg", "...
David TG's user avatar
0 votes
2 answers
273 views

I'm trying to deserialize object using newtonesoft. The Json is a response from an API that convert currency by their updated rates. Problem is, that I have a key in the Json that is not constant. The ...
Roy Raihenshtein's user avatar
0 votes
0 answers
49 views

I got json like { "Date": "22.10.10", "Date2": "22.10.10", "Levels": { "Simple": { "ID": "1", "NumCode": "2 SS", "Nominal": 1 }, ...
Rider Resharper's user avatar