# Call API, Multiple records

**URL:** https://community.glideapps.com/t/call-api-multiple-records/67834
**Category:** Ask for Help
**Created:** [November 15, 2023, 7:11pm UTC](https://community.glideapps.com/t/call-api-multiple-records/67834 "2023-11-15T19:11:14Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![CBalarezo](https://avatars.discourse-cdn.com/v4/letter/c/c77e96/32.png) [@CBalarezo](https://community.glideapps.com/u/CBalarezo)
#### Post date: [November 15, 2023, 7:11pm UTC](https://community.glideapps.com/t/call-api-multiple-records/67834/1 "2023-11-15T19:11:14Z")

</div>

I would like to know how I could make a query by consuming an API from Glide. This API will return a certain number of records that I would like to insert into my Glide table. How can I do that?

---

<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 16, 2023, 12:02am UTC](https://community.glideapps.com/t/call-api-multiple-records/67834/2 "2023-11-16T00:02:11Z")

</div>

Call API will only return whatever result your API gives you.

If you need them as static rows in a new table, based on the result, you must construct a batch API call to add multiple rows to your desired table.

If you don’t need them permanently, I would suggest this method.

> [@fishbaguette\_breadbasket Transpose Columns to an Inline List: The Miracle Method](https://community.glideapps.com/t/transpose-columns-to-an-inline-list-the-miracle-method/32766):
>
> I’m often asked how to take columns of data (say form responses) and display them in an inline list. Here’s one way to do it—the MIRACLE METHOD. [[Glide: Transpose Data Columns into an Inline List with the MIRACLE METHOD] ](https://www.youtube.com/watch?v=t-sh_Q3WbQc)

---

<div class="post-metadata">

### Author: ![CBalarezo](https://avatars.discourse-cdn.com/v4/letter/c/c77e96/32.png) [@CBalarezo](https://community.glideapps.com/u/CBalarezo)
#### Post date: [November 18, 2023, 8:44pm UTC](https://community.glideapps.com/t/call-api-multiple-records/67834/3 "2023-11-18T20:44:40Z")

</div>

> [@ThinhDinh](#):
>
> Si no los necesita permanentemente, le sugeriría este método.

Thank
