छवियों और फ़ाइलों को निःशुल्क अपलोड करें

Bashify एक निःशुल्क वेब सेवा है जिसका उपयोग चित्र, लघु वीडियो या अन्य फ़ाइलें पोस्ट करने और Reddit, Facebook, Twitter, ब्लॉग और फ़ोरम के लिए लिंक प्राप्त करने के लिए किया जा सकता है।

यह कैसे काम करता है?

अपनी फ़ाइलें छोड़ने के लिए नीचे दिए गए बॉक्स का उपयोग करें या छवियों या फ़ाइलों का चयन करने के लिए बॉक्स में क्लिक करें। कोई पंजीकरण या साइन-अप नहीं है। आप एक ही समय में कई आइटम अपलोड कर सकते हैं और प्रत्येक आइटम के लिए एक लिंक प्राप्त कर सकते हैं। सभी अपलोड अज्ञात हैं।

फाइल अपलोड करने के लिए यहां क्लिक करें या ड्रॉप करें

छवियों के लिए, कोई भी छवि प्रारूप समर्थित है (उदाहरण के लिए: 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