# How Integrate external APIs that streams data with Glide?

**URL:** https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524
**Category:** Ask for Help
**Tags:** data-sync, api, actions
**Created:** [October 31, 2024, 5:38pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524 "2024-10-31T17:38:54Z")
**Posts on this page:** 8
**Page:** 1

<div class="post-metadata">

### Author: ![yahya\_banouk](https://avatars.discourse-cdn.com/v4/letter/y/b19c9b/32.png) [@yahya\_banouk](https://community.glideapps.com/u/yahya_banouk)
#### Post date: [October 31, 2024, 5:38pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/1 "2024-10-31T17:38:54Z")

</div>

Hello community !  
I’m having an issue with glide using API calls ! I’m trying to call an external API in glide (the API streams some data via HTTP) but it seems that glide can’t receive streaming data returned in response by calling that API endpoint!  
Is there a way in glide to get the streaming http response when calling the api,  
Because having data in real-time or near real-time is essential in my case ?

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [November 1, 2024, 12:04am UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/2 "2024-11-01T00:04:23Z")

</div>

I’m interested in this as well since I know OpenAI calls can be streamed. It would make for a much friendlier user experience in my opinion, but I haven’t figured that out.

---

<div class="post-metadata">

### Author: ![yahya\_banouk](https://avatars.discourse-cdn.com/v4/letter/y/b19c9b/32.png) [@yahya\_banouk](https://community.glideapps.com/u/yahya_banouk)
#### Post date: [November 1, 2024, 1:33pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/3 "2024-11-01T13:33:51Z")

</div>

@ThinhDinh exactly  
Especially in cases like mine when the user is interested only on new data,

---

<div class="post-metadata">

### Author: ![yahya\_banouk](https://avatars.discourse-cdn.com/v4/letter/y/b19c9b/32.png) [@yahya\_banouk](https://community.glideapps.com/u/yahya_banouk)
#### Post date: [November 1, 2024, 1:34pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/4 "2024-11-01T13:34:31Z")

</div>

So can someone give us a solution ?

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [November 1, 2024, 2:54pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/5 "2024-11-01T14:54:40Z")

</div>

> [@yahya\_banouk](#):
>
> Especially in cases like mine when the user is interested only on new data,

Can you explain on the “new data” part? How is it related to “streaming”?

---

<div class="post-metadata">

### Author: ![yahya\_banouk](https://avatars.discourse-cdn.com/v4/letter/y/b19c9b/32.png) [@yahya\_banouk](https://community.glideapps.com/u/yahya_banouk)
#### Post date: [November 1, 2024, 3:16pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/6 "2024-11-01T15:16:10Z")

</div>

Yeah, I meant seniors like comparators apps  
like skyscanner for example:  
ones you click, it gives all flights and their prices from all airlines in real time or near-real-time (so here the user is only interested on new data “new filghts” not those of yesterday for instance)  
in my case it the same thing i want when ever the user clicke a button or something glide receives http streaming data .  
any suggestions ?

---

<div class="post-metadata">

### Author: ![ThinhDinh](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/thinhdinh/32/49_2.png) [@ThinhDinh](https://community.glideapps.com/u/ThinhDinh)
#### Post date: [November 2, 2024, 2:14am UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/7 "2024-11-02T02:14:11Z")

</div>

I feel like you’re talking about making an API call and then receive a real-time response, so more like the “current” data rather than the way it is presented (which is “streaming”).

If that’s the case, the Call API action should work, as long as you have a plan that gets access to it. You should be able to receive data back to a column, and proceed to display that data to the user after some parsing work.

---

<div class="post-metadata">

### Author: ![yahya\_banouk](https://avatars.discourse-cdn.com/v4/letter/y/b19c9b/32.png) [@yahya\_banouk](https://community.glideapps.com/u/yahya_banouk)
#### Post date: [November 3, 2024, 10:02pm UTC](https://community.glideapps.com/t/how-integrate-external-apis-that-streams-data-with-glide/77524/8 "2024-11-03T22:02:24Z")

</div>

I’ve tried that but HTTP version used in glide doesn’t accept streaming HTTP responses (same as postman for example)
