Skip to main content

Guide

ShareX custom uploader for imgtree

Upload captures straight to imgtree with a Bearer API key — URL copied to your clipboard after every upload.

Custom uploader JSON

Replace YOUR_API_KEY before importing. ShareX → Destinations → Custom uploader settings → Import.

{
  "Name": "imgtree",
  "DestinationType": "ImageUploader",
  "RequestMethod": "POST",
  "RequestURL": "https://imgtree.co/api/v1/upload",
  "Headers": {
    "Authorization": "Bearer YOUR_API_KEY"
  },
  "Body": "MultipartFormData",
  "FileFormName": "file",
  "URL": "$json:images[0].url$",
  "ThumbnailURL": "$json:images[0].thumb_url$",
  "DeletionURL": "$json:images[0].delete_url$"
}