From d342436fd5434a87c080a7ec8cabe9e4c57fb2e4 Mon Sep 17 00:00:00 2001 From: Marjorie Alouidor Date: Tue, 7 Oct 2025 02:45:55 -0400 Subject: [PATCH 1/3] Update README.md --- README.md | 27 ++++++++------------------- 1 file changed, 8 insertions(+), 19 deletions(-) diff --git a/README.md b/README.md index 83ce771..3b3c163 100644 --- a/README.md +++ b/README.md @@ -1,22 +1,11 @@ -# 📊 Project: Complex API 2 +# Digimon Generator Complex API ### Goal: Use data returned from one api to make a request to another api and display the data returned -### How to submit your code for review: - -- Fork and clone this repo -- Create a new branch called answer -- Checkout answer branch -- Push to your fork -- Issue a pull request -- Your pull request description should contain the following: - - (1 to 5 no 3) I completed the challenge - - (1 to 5 no 3) I feel good about my code - - Anything specific on which you want feedback! - -Example: -``` -I completed the challenge: 5 -I feel good about my code: 4 -I'm not sure if my constructors are setup cleanly... -``` +image + + + + + + From 3c67f88531d7ad805d4a811c1d4b284f74d3f9a5 Mon Sep 17 00:00:00 2001 From: Marjorie Alouidor Date: Wed, 5 Nov 2025 01:13:05 -0500 Subject: [PATCH 2/3] Revise README.md for Digimon Generator project Updated project overview and added core features, technologies, and key takeaways sections. --- README.md | 27 +++++++++++++++++++++++++-- 1 file changed, 25 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3b3c163..6ab6412 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,34 @@ -# Digimon Generator Complex API -### Goal: Use data returned from one api to make a request to another api and display the data returned +# Digimon Generator + +**Project Overview** + +This is a web application that demonstrates complex API integration by using data from one API to make requests to another API. The application fetches Digimon data and uses that information to retrieve additional details from a second API source, creating a comprehensive Digimon information display. image +**Core Features** + +* Fetch initial Digimon data from primary API +* Use returned data to make secondary API request +* Display combined information from both API sources +* Generate new Digimon with detailed information +* Clean, organized data presentation + + +**Technologies** +* **HTML:** Structure and content display +* **CSS:** Styling and visual presentation +* **JavaScript:** Chained API calls with Fetch and DOM manipulation +* **Digimon APIs:** Multiple external APIs for Digimon data +**Key Takeaways** +* Implementing **chained API requests** where one API response feeds another +* Handling **JSON responses** from multiple sources +* Understanding **data flow** between connected APIs +* Managing **error handling** across multiple API requests +* Creating **dynamic content** based on combined API data From 7fc9f72489678aca95fa9be17235d04ede949df5 Mon Sep 17 00:00:00 2001 From: Marjorie Alouidor Date: Mon, 10 Nov 2025 23:24:40 -0500 Subject: [PATCH 3/3] Fix typo in README data presentation description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6ab6412..5e3720f 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ This is a web application that demonstrates complex API integration by using dat * Use returned data to make secondary API request * Display combined information from both API sources * Generate new Digimon with detailed information -* Clean, organized data presentation +* Clean, organized data presentatiom **Technologies**