画像やファイルを無料でアップロード

Bashify は、画像、短いビデオ、またはその他のファイルを投稿したり、Reddit、Facebook、Twitter、ブログ、フォーラムへのリンクを取得したりするために使用できる無料の Web サービスです。

仕組みは?

下のボックスを使用してファイルをドロップするか、ボックスをクリックして画像またはファイルを選択します。 登録やサインアップはありません。 複数のアイテムを同時にアップロードして、アイテムごとに 1 つのリンクを受け取ることができます。 すべてのアップロードは匿名です。

ここでファイルをクリックまたはドロップしてアップロードします

画像については、任意の画像形式がサポートされています (例: png、jpeg、gif、webp)

Error! Foo Bar.

Option 2: Upload from the command line using the API

Our convenient API allows uploading images or files from your terminal window. For example:

curl --form meta='{"exposure": "public", "expiration": "auto"}' \
     --form 'file=@/home/foobar/images/beautiful_sunset.jpg' \
     https://bashify.io/api/v1/upload
            
The above command will upload the image with the path /home/foobar/images/beautiful_sunset.jpg.

The response will be a JSON-formatted string like this:

{"short_url_code":"D5vH4M",
 "long_url_code":"D5vH4M_beautiful_sunset",
 "is_image":1,
 "deletion_code":"teP5EUKtL"}
            
From the above we can construct URLs: https://bashify.io/images/D5vH4M or https://bashify.io/images/D5vH4M_beautiful_sunset