Albums group related photos within a project. A single project can contain multiple albums — for example one per look, scene, or shooting day. The albums API lets you retrieve all albums in a project and create new ones from your own tooling or automation pipeline.Documentation Index
Fetch the complete documentation index at: https://docs.shootbin.com/llms.txt
Use this file to discover all available pages before exploring further.
You must be a member of the project to list or create albums. Creating an album additionally requires the
create (or post:create) token scope and the create team permission.List albums in a project
Returns all albums belonging to the specified project, ordered newest first. Each album includes aphotos_count field reflecting how many photos it currently contains.
Path parameters
The ID of the project. Obtain this from the List projects endpoint.
Example request
Example response
Response fields
The unique identifier of the album. Use this value as the
{album} path parameter in all photo API calls.The ID of the project this album belongs to.
The album name.
Optional description.
null if not set.The number of photos currently in the album.
Create an album
Creates a new album inside the specified project.Path parameters
The ID of the project to create the album in.
Request body
This endpoint acceptsmultipart/form-data fields (the same format used by curl -F):
The album name. Maximum 255 characters.
An optional description for the album.
Example request
Example response
201 Created
Errors
| Status | Reason |
|---|---|
403 | Token lacks create scope, user lacks team create permission, project is locked for review, or album plan limit reached |
404 | Project not found |
422 | Validation failed — name is missing or too long |