{"id":23201073,"url":"https://github.com/codedotjs/basic-instagram-user-details","last_synced_at":"2025-08-18T23:33:01.550Z","repository":{"id":42187069,"uuid":"132103298","full_name":"CodeDotJS/basic-instagram-user-details","owner":"CodeDotJS","description":":sparkles: A simple API to scrap basic details of an Instagram user","archived":false,"fork":false,"pushed_at":"2022-12-09T07:34:33.000Z","size":27,"stargazers_count":14,"open_issues_count":1,"forks_count":5,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-12-11T22:27:55.738Z","etag":null,"topics":["api","api-wrapper","instagram","instagram-api","instagram-nodejs","nodejs","scraper"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/CodeDotJS.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-05-04T07:16:20.000Z","updated_at":"2024-11-24T15:02:09.000Z","dependencies_parsed_at":"2023-01-25T19:30:57.531Z","dependency_job_id":null,"html_url":"https://github.com/CodeDotJS/basic-instagram-user-details","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/CodeDotJS%2Fbasic-instagram-user-details","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeDotJS%2Fbasic-instagram-user-details/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeDotJS%2Fbasic-instagram-user-details/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CodeDotJS%2Fbasic-instagram-user-details/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CodeDotJS","download_url":"https://codeload.github.com/CodeDotJS/basic-instagram-user-details/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230292741,"owners_count":18203650,"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":["api","api-wrapper","instagram","instagram-api","instagram-nodejs","nodejs","scraper"],"created_at":"2024-12-18T15:13:49.279Z","updated_at":"2024-12-18T15:13:49.744Z","avatar_url":"https://github.com/CodeDotJS.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n\u003cimg src=\"media/buid.jpg\" width=\"340\"\u003e\n\u003cbr\u003e\n  \u003ca href=\"https://travis-ci.org/CodeDotJS/basic-instagram-user-details\"\u003e\n  \u003cimg src=\"https://travis-ci.org/CodeDotJS/basic-instagram-user-details.svg?branch=master\"\u003e\n  \u003c/a\u003e\n  ⚫\n  \u003cimg src=\"https://camo.githubusercontent.com/b9d624cb37169bb3e06fd6deddabfff02b5e43be/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64655f7374796c652d584f2d3565643963372e737667\"\u003e\n  \u003cbr\u003e\n  \u003cbr\u003e\n  \u003cb\u003eA simple API to scrap details of any Instagram user\u003c/b\u003e\n\u003c/p\u003e\n\n\n## Install\n\n```\n$ npm install --save basic-instagram-user-details\n```\n\n## Usage\n\n__`User ID`__\n```js\nconst bud = require('basic-instagram-user-details');\n\nconst user = 'iama_rishi';\n\nbud(user, 'id').then(id =\u003e {\n  console.log(id);\n  // =\u003e { data: '259220806' }\n});\n```\n\n__`OR`__\n\n```js\nbud(user, 'id').then(res =\u003e {\n  const userId = res.data;\n  console.log(userId);\n  // =\u003e 259220806\n});\n```\n\n## Example\n\n__`Full Name`__\n\n```js\nbud(user, 'fullname').then(fullname =\u003e {\n  console.log(fullname);\n  // =\u003e { data: 'Rishi Giri' }\n});\n```\n\n## API\n\n```js\nbud('username', 'options')\n```\n\n`username` `:`  __`string`__\n\n`options` `:` __`string`__\n\n\n| __`Options`__      | __`Output`__  |\n|--------------------|---------------|\n| __`id`__           | `string`      |\n| __`fullname`__     | `string`      |\n| __`username`__     | `string`      |\n| __`bio`__          | `string`      |\n| __`externalUrl`__  | `string`      |\n| __`linkshimmed`__  | `string`      |\n| __`posts`__        |  `string`     |\n| __`followers`__    |  `string`     |\n| __`following`__    |  `string`     |\n| __`private`__      |  `boolean`    |\n| __`verified`__     |  `boolean`    |\n| __`connected`__    |  `object`     |\n\n### Why?\n\nWhy? Because Instagram is fucking up with everything.\n\n## Related\n\n- __[`instavim`](https://github.com/CodeDotJS/instavim)__ `:` `Command line Instagram media downloader.`\n- __[`istalk`](https://github.com/CodeDotJS/instafy)__ `:` `Stalk Instagram users from the command line!`\n- __[`instagram-id-of`](https://github.com/CodeDotJS/instagram-id-of)__ `:` `Find UserID of any Instagram user from command line!`\n- __[`instagram-profile-picture`](https://github.com/CodeDotJS/instagram-profile-picture)__ `:` `An API to get url to the profile picture and other Instagram medias.`\n- __[`instagram-links`](https://github.com/CodeDotJS/Instagram-links)__ `:` `Get links to the publically shared media on Instagram.`\n\n## License\n\nMIT \u0026copy; [Rishi Giri](http://rishigiri.ml);\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedotjs%2Fbasic-instagram-user-details","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcodedotjs%2Fbasic-instagram-user-details","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcodedotjs%2Fbasic-instagram-user-details/lists"}