{"id":21034470,"url":"https://github.com/animify/dribbblejs","last_synced_at":"2025-07-19T15:36:43.929Z","repository":{"id":43994606,"uuid":"239321843","full_name":"animify/dribbblejs","owner":"animify","description":"🏀 A Typescript-first Dribbble API library","archived":false,"fork":false,"pushed_at":"2023-01-05T07:01:46.000Z","size":2056,"stargazers_count":13,"open_issues_count":14,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-05T19:24:02.429Z","etag":null,"topics":["dribbble","dribbble-api","dribbble-js","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/animify.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-02-09T14:54:05.000Z","updated_at":"2023-07-03T15:00:35.000Z","dependencies_parsed_at":"2023-02-03T17:01:15.068Z","dependency_job_id":null,"html_url":"https://github.com/animify/dribbblejs","commit_stats":null,"previous_names":[],"tags_count":20,"template":false,"template_full_name":null,"purl":"pkg:github/animify/dribbblejs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animify%2Fdribbblejs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animify%2Fdribbblejs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animify%2Fdribbblejs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animify%2Fdribbblejs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/animify","download_url":"https://codeload.github.com/animify/dribbblejs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/animify%2Fdribbblejs/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265136965,"owners_count":23716776,"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":["dribbble","dribbble-api","dribbble-js","typescript"],"created_at":"2024-11-19T13:07:15.995Z","updated_at":"2025-07-19T15:36:43.873Z","avatar_url":"https://github.com/animify.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://i.imgur.com/jWLABuP.png\" width=\"280\"\u003e\n\n\n\n[![Maintainability](https://api.codeclimate.com/v1/badges/70117f75b09f8473edd4/maintainability)](https://codeclimate.com/github/animify/dribbblejs/maintainability)\n\nA promise based, Typescript-first [Dribbble API](https://developer.dribbble.com/v2) library.\n\n## Features\n\n##### 🤖 Full Typescript support\n\n##### 🌈 Familiar API setup\n\n##### ⚡️  Feather light\n\n##### 🚨 Proper error handling\n\n##### 🧘‍♀️ Framework agnostic\n\n## Getting Started\n### Installation\n\n##### with Yarn\n```\n$ yarn add dribbblejs\n```\n##### or with NPM\n```\n$ npm install dribbblejs\n```\n\n### Usage\n\n```ts\nimport { Dribbble } from \"dribbblejs\";\n\nconst dribbble = new Dribbble({\n  authToken: \"xxxxxxxx\"\n});\n```\n\n## API\n### User\n\n\u003e ##### [Official User API Documentation](https://developer.dribbble.com/v2/user/)\n\n#### Get authenticated user\n\n```ts\ndribbble.user.get()\n```\n\n---\n### Projects\n\n\u003e ##### [Official Projects API Documentation](https://developer.dribbble.com/v2/projects/)\n\n#### Get list of projects\n\n```ts\ndribbble.projects.list()\n```\n\n#### Create a project\n```ts\ndribbble.projects.create({\n    name: 'Project name', // *Required*\n    description: 'Project description' // Optional\n})\n```\n\n#### Update a project by `id`\n\n```ts\ndribbble.projects.update('883377', {\n    name: 'New project name', // Optional\n    description: 'New project description' // Optional\n})\n```\n\n#### Delete a project by `id`\n\n```ts\ndribbble.projects.delete('883377')\n```\n\n---\n\n### Shots\n\n\u003e ##### [Official Shots API Documentation](https://developer.dribbble.com/v2/shots/)\n\n#### Get list of shots\n```ts\ndribbble.shots.list()\n```\n#### Get a shot by `id`\n```ts\ndribbble.shots.get('6432565')\n```\n\n#### Create a shot\n```ts\ndribbble.shots.create({\n    image: imageFile // *Required*\n    title: 'Shot title', // *Required*\n    description: 'Shot description', // Optional\n    low_profile: true, // Optional\n    rebound_source_id: 6432542, // Optional\n    scheduled_for: 1582391638790, // Optional\n    tags: ['ui', 'illustration'], // Optional\n    team_id: 3818924 // Optional\n})\n```\n\n#### Update a shot by `id`\n```ts\ndribbble.shots.update('6432565', {\n    title: 'New shot title', // Optional\n    description: 'New shot description', // Optional\n    low_profile: true, // Optional\n    rebound_source_id: 6432542, // Optional\n    scheduled_for: 1582391638790, // Optional\n    tags: ['ui', 'illustration'], // Optional\n    team_id: 3818924 // Optional\n})\n```\n\n#### Delete a shot by `id`\n```ts\ndribbble.shots.delete('6432565')\n```\n\n---\n\n### Attachments API\n\n\u003e ##### [Official Attachments API Documentation](https://developer.dribbble.com/v2/attachments/)\n\n#### Create attachment for a `shot`\n\n```ts\ndribbble.attachments.create('6432565', {\n    file: attachmentFile // *Required*\n})\n```\n\n#### Delete attachment `id` for a `shot`\n```ts\ndribbble.attachments.delete('1376676', '6432565')\n```\n\n\n---\n\n### License\nDribbblejs is [MIT licensed](./LICENSE).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanimify%2Fdribbblejs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fanimify%2Fdribbblejs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fanimify%2Fdribbblejs/lists"}