Artworks
Artworks endpoint
Some of these are authenticated endpoints. You can visit authentication to get an access token.
These endpoints allow you to create, read, update and delete artworks.
These endpoints support pagination and sorting. Read more about these features here.
The Artwork model
Prop | Type | Default |
---|---|---|
id | string | - |
title | string | - |
artist | string | - |
year | number | - |
medium | string | - |
description | string | - |
location | string | - |
image | object | - |
created | Date | - |
updated | Date | - |
owner | Profile | - |
All artworks
Retrieve all artworks.
Single artwork
Retrieve a single artwork by its id.
Create artwork
Create a new artwork.
Please note that the image.url
property must be a fully formed URL that links to a live and publicly accessible image. The API will check the provided URL and if it cannot be accessed publicly you will receive a 400 Bad Request
error response.
Update artwork
Update an artwork by its id. This endpoint returns the updated artwork.
Please note that the image.url
property must be a fully formed URL that links to a live and publicly accessible image. The API will check the provided URL and if it cannot be accessed publicly you will receive a 400 Bad Request
error response.
Delete artwork
Delete an artwork by its id.
Returns an empty 204 No Content
response on success.