Streamio API Documentation

Images - Create

Create a image on your account with the specified parameters. Don't forget to specify POST as the request method as GET will call the list action rather than create.

Request

Url

https://streamio.com/api/v1/images.format

Request Method

POST

Parameters

  • file The image file you want to upload. This is the only required parameter.
  • title The title of the image. If you don't specify this the filename of the file parameter will be used.
  • tags The tags you wish to set for the image. Multiple tags are separated by comma.

Response

Code

201

Body

Examples

A simple create

Simplest case scenario is to just post with the file parameter set to a image file on your hard drive.

curl -u username:password \
     -F file=@path/to/image.jpg \
     https://streamio.com/api/v1/images.json