Images
Generate image upload URL
Generate a presigned URL for uploading images.
Authorization
x-kommunity-api-key
<token>In: header
Response Body
Successfully generated upload URL
TypeScript Definitions
Use the response body type in TypeScript.
success
booleanupload_url
stringPresigned URL for uploading the image
image_url
stringCDN URL where the image will be accessible after upload
Unauthorized - Invalid API key or missing permission
TypeScript Definitions
Use the response body type in TypeScript.
success
booleanValue in:
false
error
stringServer error
TypeScript Definitions
Use the response body type in TypeScript.
success
booleanValue in:
false
error
stringcurl -X POST "/api/v1/images/upload-url" \
-H "x-kommunity-api-key: <token>"
fetch("/api/v1/images/upload-url", {
headers: {
"x-kommunity-api-key": "<token>"
}
})
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "/api/v1/images/upload-url"
req, _ := http.NewRequest("POST", url, nil)
req.Header.Add("x-kommunity-api-key", "<token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import requests
url = "/api/v1/images/upload-url"
response = requests.request("POST", url, headers = {
"x-kommunity-api-key": "<token>"
})
print(response.text)
{
"success": true,
"upload_url": "https://bucket-name.s3.amazonaws.com/image-key?AWSAccessKeyId=...",
"image_url": "https://cdn.kommunity.app/image-key"
}
{
"success": false,
"error": "Invalid API key or missing permissions"
}
{
"success": false,
"error": "Failed to generate presigned URL"
}