Getting data from blynk server

Hello Blynk,
Is it possible to get data from blynk server and then the data will be processed on my own android application?
For example, data form DHT sensor which already connected to blynk. And then i take temperature data from blynk server and then process it to my own android app. Is it possible?

Regards,

If you are able to write Android apps then almost anything should be possible.

Search the GitHub and forum for API.

Hello. Yes. It is possible. There are indeed many way to do that.
You can use Blynk WebHook. When value comes to Blynk server you can forward it to some http endpoint.
You can use HTTP API. Directly from Android app request required pins data (pulling) in timer.
You can connect with websockets or with tcp/ssl connection.