List assets for a project
GET
/api/projects/{id}/assets
Authentication
API Key (cookie: better-auth.session_token)
Path Parameters
id
string
required
path
Example:
"abc123"Query Parameters
limit
integer
optional
query
offset
integer | null
optional
query
Responses
200
Asset list
application/jsonassets
object[]
REQUIRED
Array of:
404
Not found
curl -X GET 'https://motioness.com/api/projects/abc123/assets'
const response = await fetch('https://motioness.com/api/projects/abc123/assets', { method: 'GET'});const data = await response.json();console.log(data);
import requestsresponse = requests.get('https://motioness.com/api/projects/abc123/assets')print(response.json())
200
Response
{ "assets": [ "<object>" ]}
API Playground
Try this endpoint
GET
/api/projects/{id}/assets