Upload files to Cosmos

  1. Make a GET request to /v1/uploads to get a signed URL that you can use to upload a file, and a key to locate the file. Make sure to include the required extension query, ?extension=jpeg, to set the file extension for your upload.
Example Request
  curl --location --request GET 'https://api.golivecosmos.com/v1/uploads?extension=jpeg' \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer <token>' \

To see an example of the expected response from this request, check out the Uploads API reference page.

  1. Make a PUT request to the the signed URL returned in step 1.
Example Request
  curl --location --request PUT 'https://production-cosmos-assets.s3.us-east-1.amazonaws.com/production/64249607732dd0eb4b42ce02/7866779?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Content-Sha256=UNSIGNED-PAYLOAD&X-Amz-Credential=AKIAUHGZCRDQ7C36EENS%2F20230606%2Fus-east-1%2Fs3%2Faws4_request&X-Amz-Date=20230606T182458Z&X-Amz-Expires=300&X-Amz-Signature=8ae1e1fdc3fa17a679bbeefef6bf03b6093add9f4efc158bbe32a37bf2c9a9b3&X-Amz-SignedHeaders=host&x-id=PutObject' \
  --header 'Content-Type: application/json' \
  --data-binary "image_file.jpeg"
  1. After a successful request from step 2, use the key returned in the response from the request in step 1 to see your file, e.g. https://production-cosmos-assets.s3.amazonaws.com/<key>