{"id":24435382,"url":"https://github.com/msaf9/financial-data-filtering-app","last_synced_at":"2026-04-02T18:52:48.739Z","repository":{"id":271793882,"uuid":"914584604","full_name":"msaf9/financial-data-filtering-app","owner":"msaf9","description":"A web application to fetch and analyze financial data for Apple Inc. (AAPL) using data from a public API. ","archived":false,"fork":false,"pushed_at":"2025-01-13T02:38:48.000Z","size":1032,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T21:44:26.322Z","etag":null,"topics":["git","github","github-pages","react","tailwindcss"],"latest_commit_sha":null,"homepage":"https://msaf9.github.io/financial-data-filtering-app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/msaf9.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-01-09T22:11:48.000Z","updated_at":"2025-01-13T02:38:38.000Z","dependencies_parsed_at":"2025-01-09T23:25:07.659Z","dependency_job_id":"c8850ae2-8389-4c14-b7bb-1def2b79ea6a","html_url":"https://github.com/msaf9/financial-data-filtering-app","commit_stats":null,"previous_names":["msaf9/financial-data-filtering-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/msaf9/financial-data-filtering-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msaf9%2Ffinancial-data-filtering-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msaf9%2Ffinancial-data-filtering-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msaf9%2Ffinancial-data-filtering-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msaf9%2Ffinancial-data-filtering-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/msaf9","download_url":"https://codeload.github.com/msaf9/financial-data-filtering-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/msaf9%2Ffinancial-data-filtering-app/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262996402,"owners_count":23396903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["git","github","github-pages","react","tailwindcss"],"created_at":"2025-01-20T17:19:53.406Z","updated_at":"2025-12-30T22:20:16.958Z","avatar_url":"https://github.com/msaf9.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Financial Data Filtering App\nA web application to fetch and analyze financial data for Apple Inc. (AAPL) using data from a public API. The app provides features like filtering, sorting, and displaying financial metrics in a responsive, user-friendly interface.\n\n## Features\n1. Fetch and Display Data\n    - Retrieves annual income statement data for Apple Inc. using the Financial Modeling Prep API.\n    - Displays key financial metrics in a tabular format, including:\n    - Date: The fiscal year of the data.\n    - Revenue\n    - Net Income\n    - Gross Profit\n    - EPS (Earnings Per Share)\n    - Operating Income\n\n2. Filtering\n    - Filter financial data based on:\n    - Date Range: Specify start and end years.\n    - Revenue: Filter by a user-defined revenue range.\n    - Net Income: Filter by a user-defined net income range.\n\n3. Sorting\n    - Sort table data by:\n    - Date: Ascending/Descending order.\n    - Revenue: Ascending/Descending order.\n    - Net Income: Ascending/Descending order.\n\n4. Responsive Design\n    - Ensures a seamless user experience on desktop, tablet, and mobile devices.\n    - Styled using TailwindCSS for a clean and modern look.\n\n## Technical Stack\n- Frontend: React.js\n- Styling: TailwindCSS\n- API: [Financial Modeling Prep API](https://site.financialmodelingprep.com/developer/docs#income-statements-financial-statements)\n- Deployment: GitHub Pages\n\n## Installation and Setup\n\n### Prerequisites\n- Node.js installed on your system.\n\n### Steps to Run Locally\n1. Clone the repository:\n```git\ngit clone https://github.com/msaf9/financial-data-filtering-app.git\ncd financial-data-filtering-app\n```\n\n2.\tInstall dependencies:\n```npm\nnpm install\n```\n\n3. Add your Financial Modeling Prep API key:\n\u003e   - Create a .env file in the root directory.\n\u003e\t- Add your API key to the file: \n\u003e       - ```REACT_APP_API_KEY=your_api_key_here```\n\n4.\tStart the development server:\n```npm\nnpm start\n```\n\n5.\tOpen the app in your browser at http://localhost:3000.\n\n## Deployment\n\nThis project is deployed using GitHub Pages. To access the live version of the app, visit: [Financial Data Filtering App](https://msaf9.github.io/financial-data-filtering-app/).\n\nURL: https://msaf9.github.io/financial-data-filtering-app/\n\n## File Structure\n```tree\nfinancial-data-filtering-app/\n├── public/\n├── src/\n│   ├── App.js            # Main application logic\n│   ├── index.js          # React entry point\n│── .env                  # API key configuration\n├── .gitignore\n├── package.json\n├── README.md\n└── tailwind.config.js    # TailwindCSS configuration\n```\n\n\n## Contributing\n1.\tFork the repository.\n2.\tCreate a feature branch:\n```git\ngit checkout -b feature-name\n```\n\n3.\tCommit your changes:\n```git\ngit commit -m \"Add feature-name\"\n```\n\n4.\tPush to your forked repository:\n```git\ngit push origin feature-name\n```\n\n5.\tSubmit a pull request.\n\n## Contact\n\nFor any questions or suggestions, feel free to reach out to me by opening a pull request.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsaf9%2Ffinancial-data-filtering-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmsaf9%2Ffinancial-data-filtering-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmsaf9%2Ffinancial-data-filtering-app/lists"}