Welcome to the My Static API repository! This repository contains static data for various purposes, such as testing, development, or learning projects.
The "sneakers.json" file contains information about 25 sneaker products. Each entry includes the name of the sneaker, available sizes, available colors, and the path to the image file.
Example entry:
{
"name": "AirFlex Runners",
"sizes": ["7", "8", "9", "10", "11"],
"colors": ["Black", "White", "Red"],
"image": "assets/shoes/airflex_runners.jpg"
}
The "basketball_shoes.json" file contains information about 25 basketball shoe products. Similar to the sneakers data, each entry includes the name, available sizes, available colors, and the path to the image file.
Example entry:
{
"name": "Air Dunk Pro",
"sizes": ["8", "9", "10", "11", "12"],
"colors": ["Black/Red", "White/Blue", "Gray/Green"],
"image": "assets/basketball_shoes/air_dunk_pro.jpg"
}
To access data from My Static API, you have two options:
-
Clone Repository:
- Use the
git clone
command to copy this repository to your local machine. - Access the data files in your project as usual.
git clone https://github.com/your-username/my-static-api.git
- Use the
-
Raw GitHub:
- You can access data files directly through the "Raw" link on the GitHub repository.
- Copy the "Raw" link of the file you need and use it in your applications or scripts.
Example "Raw" links:
Please choose the option that suits your needs. If you need further assistance, feel free to ask!
Feel free to explore and utilize the data provided in this repository for your projects!
Make sure to replace "your-username" with your GitHub username. Don't forget to include additional information or adjustments as needed for your project. Hope it is useful!