# Extracting information from Resume/CV

**URL:** https://community.glideapps.com/t/extracting-information-from-resume-cv/66911
**Category:** Ask for Help
**Created:** [October 11, 2023, 4:33pm UTC](https://community.glideapps.com/t/extracting-information-from-resume-cv/66911 "2023-10-11T16:33:36Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![kyloramires](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/kyloramires/32/63922_2.png) [@kyloramires](https://community.glideapps.com/u/kyloramires)
#### Post date: [October 11, 2023, 4:33pm UTC](https://community.glideapps.com/t/extracting-information-from-resume-cv/66911/1 "2023-10-11T16:33:36Z")

</div>

Hello, I am currently working on an app where I would like to implement a feature where the user can upload their Resume/CV, and the program would extract the info to complete their profile.

Does anyone have suggestions as to how I could tackle this?

---

<div class="post-metadata">

### Author: ![Robert\_Petitto](https://sea2.discourse-cdn.com/flex002/user_avatar/community.glideapps.com/robert_petitto/32/25193_2.png) [@Robert\_Petitto](https://community.glideapps.com/u/Robert_Petitto)
#### Post date: [October 11, 2023, 6:44pm UTC](https://community.glideapps.com/t/extracting-information-from-resume-cv/66911/2 "2023-10-11T18:44:01Z")

</div>

Glide AI → Extract to JSON → Query JSON object

I plan on creating a video on this in the next week or two.

---

<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: [October 11, 2023, 11:18pm UTC](https://community.glideapps.com/t/extracting-information-from-resume-cv/66911/3 "2023-10-11T23:18:16Z")

</div>

I had somewhat the same use case here before extract to JSON was a thing.

[![](https://us1.discourse-cdn.com/flex002/uploads/glideapps/original/3X/8/2/82330577da8076322e88c6fc849bef165db664a5.jpeg "The Smartest AI Expense Tracker no-code app ever built!") ](https://www.youtube.com/watch?v=69_5sh01I3Q)

So, Robert’s method now looks like this:

Upload image \> Image to text (Extract text as JSON) \> Query JSON to take out each component of the JSON as needed \> Add a new row.

Back then, what I did was:

Upload image \> Google Cloud Vision to transform to text \> OpenAI to convert text to JSON, with a format I can control (regarding the key names) \> Query JSON \> Add a new row.
