Some thing that gets data from an api

Hello,
I have something that gets data from an api, it comes back in this format {“response”:{“94.142.131.241”:“BAD:65”},“result”:“success”,“msg”:null}. How can I get the score (“BAD:65”). Does anyone know what it is called?
Thank You,

This looks pretty much like JSON (JSON - Wikipedia)

There is also a simple deserializer available for .NET MF:
http://netduinohelpers.codeplex.com/

On the other hand you could also write a piece of dirty code to snip everything unwanted away…

You will also find some JSON libraries in the Codeshare:

http://www.tinyclr.com/codeshare/search?q=json

Thanks Guys