{"id":19670390,"url":"https://github.com/iamfoysal/json-api-functionality","last_synced_at":"2026-04-11T01:00:08.159Z","repository":{"id":49833032,"uuid":"448970864","full_name":"iamfoysal/JSON-API-Functionality","owner":"iamfoysal","description":"API stands for “Application Programming Interface.” An API is a software intermediary that allows two applications to talk to each other.  In other words, an API is the messenger that delivers your request to the provider that you’re requesting it from and then delivers the response back to you.  JSON stands for JavaScript Object Notation  JSON is a lightweight format for storing and transporting data  JSON is often used when data is sent from a server to a web page  JSON is \"self-describing\" and easy to understand.","archived":false,"fork":false,"pushed_at":"2022-07-28T11:21:25.000Z","size":183,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-10T03:33:15.968Z","etag":null,"topics":["javascript","json","nodejs","python","rest-api"],"latest_commit_sha":null,"homepage":"","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/iamfoysal.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"iamfoysal","patreon":null,"open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":null}},"created_at":"2022-01-17T16:38:05.000Z","updated_at":"2022-08-11T07:48:49.000Z","dependencies_parsed_at":"2022-08-28T21:00:50.487Z","dependency_job_id":null,"html_url":"https://github.com/iamfoysal/JSON-API-Functionality","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamfoysal%2FJSON-API-Functionality","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamfoysal%2FJSON-API-Functionality/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamfoysal%2FJSON-API-Functionality/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/iamfoysal%2FJSON-API-Functionality/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/iamfoysal","download_url":"https://codeload.github.com/iamfoysal/JSON-API-Functionality/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240980812,"owners_count":19888343,"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":["javascript","json","nodejs","python","rest-api"],"created_at":"2024-11-11T17:06:06.545Z","updated_at":"2025-12-31T01:13:06.455Z","avatar_url":"https://github.com/iamfoysal.png","language":"JavaScript","funding_links":["https://github.com/sponsors/iamfoysal"],"categories":[],"sub_categories":[],"readme":"# API\n\nAPI stands for “Application Programming Interface.” An API is a software intermediary that allows two applications to talk to each other.  In other words, an API is the messenger that delivers your request to the provider that you’re requesting it from and then delivers the response back to you. \n   \nApi Request Using Function: \n   \n```\n      function findUser() {   \n          fetch('https://jsonplaceholder.typicode.com/comments')\n             .then(response =\u003e response.json())\n             .then(json =\u003e UserData(json)) \n      }\n```\n\nusing for of collect all value of object // faster then (for and for in) \n\n```\nfunction UserData(json) {\n    for (const user of json) {\n        document.getElementById('status').innerHTML += `\u003cli\u003e${user.name}\u003c/li\u003e` \n    }  \n}\n```\n\ndisplaying Data  : \n ```\n  \u003cul id=\"status\"\u003e\u003c/ul\u003e\n  \n```\n\n# JSON\nJSON stands for JavaScript Object Notation  JSON is a lightweight format for storing and transporting data  JSON is often used when data is sent from a server to a web page  JSON is \"self-describing\" and easy to understand.\n\nExample:\n\n```\n    [\n      {\n          \"postId\": 1,\n          \"id\": 1,\n          \"name\": \"id labore ex et quam laborum\",\n          \"email\": \"Eliseo@gardner.biz\",\n          \"body\": \"laudantium enim quasi est quidem magnam voluptate ipsam eos\\ntempora quo necessitatibus\\ndolor quam autem quasi\"\n        },\n        {\n          \"postId\": 1,\n          \"id\": 2,\n          \"name\": \"quo vero reiciendis velit similique earum\",\n          \"email\": \"Jayne_Kuhic@sydney.com\",\n          \"body\": \"est natus enim nihil est dolore omnis voluptatem numquam\\net omnis occaecati quod ullam at\\nvoluptatem error expedita\"\n        },\n        {\n          \"postId\": 1,\n          \"id\": 3,\n          \"name\": \"odio adipisci rerum aut animi\",\n          \"email\": \"Nikita@garfield.biz\",\n          \"body\": \"quia molestiae reprehenderit quasi aspernatur\\naut expedita occaecati aliquam eveniet laudantium\\nomnis\"\n        },\n        {\n          \"postId\": 1,\n          \"id\": 4,\n          \"name\": \"alias odio sit\",\n          \"email\": \"Lew@alysha.tv\",\n          \"body\": \"non et atque\\noccaecati deserunt quas accusantium unde odit nobis qui voluptatem\\nquia voluptas consequuntur itaque dolor\"\n        },\n        {\n          \"postId\": 1,\n          \"id\": 5,\n          \"name\": \"vero eaque aliquid doloribus et culpa\",\n          \"email\": \"Hayden@althea.biz\",\n          \"body\": \"harum non quasi et ratione\\ntempore iure ex voluptates in ratione\\nharum architecto fugit inventore cupiditate\\nvoluptates magni quo et\"\n        }\n    ]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamfoysal%2Fjson-api-functionality","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fiamfoysal%2Fjson-api-functionality","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fiamfoysal%2Fjson-api-functionality/lists"}