Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 45 additions & 22 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,45 @@
# 📊 Project: 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...
```
# 🎵 Artist & Song Search App 🎤

## 🎯 Goal
Create a **simple web application** that allows users to search for a musical artist and display information such as:
- The artist’s **alias or stage name**
- A list of their **songs or top tracks**
- An **image** of the artist

---

## 🚀 Features
- ✅ User can search for an artist by name
- ✅ Displays artist details (alias, songs, and image)
- ✅ Fetches live data from a **music-related API**
- ✅ Clean and simple user interface

---

## 🧩 Tech Stack
- **HTML** – Structure and input form
- **CSS** – Styling and layout
- **JavaScript (ES6)** – Fetches and displays data dynamically
- **API** – Example sources:
- [Deezer API](https://developers.deezer.com/api)
- [Spotify API](https://developer.spotify.com/documentation/web-api/)
- [MusicBrainz API](https://musicbrainz.org/doc/Development/XML_Web_Service/Version_2)

---

## 💻 How It Works
1. The user types an **artist name** into the search bar.
2. When the user clicks **Search**, JavaScript sends a request to a **music API**.
3. The API returns data such as:
- Artist alias or name
- List of songs or albums
- Artist image
4. The app dynamically displays this information on the page.

---

## 📦 Installation & Usage

1. Clone the repository:
```bash
git clone https://github.com/yourusername/artist-song-search.git
Loading