Sign in

Create shot

documented

Create a new shot for the authenticated user (requires upload scope).

POST /shotsShotsno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.dribbble.com/v2/shots" \
  -X POST \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "Accept: application/vnd.dribbble.v2+json" \
  -F "image=@{{$image_path}}" \
  -F "title={{$title}}" \
  -F "description={{$description}}" \
  -F "low_profile={{$low_profile}}" \
  -F "rebound_source_id={{$rebound_source_id}}" \
  -F "scheduled_for={{$scheduled_for}}" \
  -F "tags[]={{$tag1}}" \
  -F "tags[]={{$tag2}}" \
  -F "team_id={{$team_id}}"
Create shot · Dribbble · OpenIntegrations