Skip to main content

ImmichClient

Struct ImmichClient 

Source
pub struct ImmichClient { /* private fields */ }
Expand description

Client for interacting with the Immich REST API.

Handles authentication via API key and provides typed methods for API endpoints.

§Example

use immich_lib::ImmichClient;

let client = ImmichClient::new("https://immich.example.com", "your-api-key")?;
let duplicates = client.get_duplicates().await?;
println!("Found {} duplicate groups", duplicates.len());

Implementations§

Source§

impl ImmichClient

Source

pub fn new(base_url: &str, api_key: &str) -> Result<Self>

Creates a new ImmichClient with the given base URL and API key.

§Arguments
  • base_url - The base URL of the Immich server (e.g., https://immich.example.com)
  • api_key - The API key for authentication (created in Immich web UI)
§Errors

Returns an error if:

  • The base_url is not a valid URL
  • The api_key is empty or contains invalid characters
  • The HTTP client cannot be built
Source

pub async fn get_duplicates(&self) -> Result<Vec<DuplicateGroup>>

Fetches all duplicate groups from the Immich server.

§Returns

A vector of duplicate groups, each containing assets that Immich has identified as duplicates. Returns an empty vector if no duplicates exist.

§Errors

Returns an error if:

  • The HTTP request fails (network error, timeout)
  • The server returns an error response (401 unauthorized, etc.)
  • The response cannot be parsed as JSON
Source

pub async fn get_all_assets(&self) -> Result<Vec<AssetResponse>>

Fetches all assets from the Immich server.

Uses pagination to handle large libraries. Automatically filters out trashed assets.

§Returns

A vector of all non-trashed assets in the library.

§Errors

Returns an error if:

  • The HTTP request fails (network error, timeout)
  • The server returns an error response (401 unauthorized, etc.)
  • The response cannot be parsed as JSON
Source

pub async fn get_asset(&self, asset_id: &str) -> Result<AssetResponse>

Fetches a single asset by ID.

§Arguments
  • asset_id - The ID of the asset to fetch
§Returns

The asset with its EXIF metadata.

§Errors

Returns an error if:

  • The HTTP request fails (network error, timeout)
  • The server returns an error response (401 unauthorized, 404 not found)
  • The response cannot be parsed as JSON
Source

pub async fn download_asset(&self, asset_id: &str, path: &Path) -> Result<u64>

Downloads an asset’s original file to the specified path.

Uses streaming to avoid buffering the entire file in memory, making it suitable for large files.

§Arguments
  • asset_id - The ID of the asset to download
  • path - The destination path to save the file
§Returns

The total number of bytes written to the file.

§Errors

Returns an error if:

  • The HTTP request fails
  • The server returns an error response
  • The file cannot be created or written to
Source

pub async fn delete_assets( &self, asset_ids: &[String], force: bool, ) -> Result<()>

Deletes multiple assets in a single API call.

§Arguments
  • asset_ids - The IDs of the assets to delete
  • force - If true, permanently delete; if false, move to trash
§Errors

Returns an error if:

  • The HTTP request fails
  • The server returns an error response
Source

pub async fn update_asset_metadata( &self, asset_id: &str, latitude: Option<f64>, longitude: Option<f64>, date_time_original: Option<&str>, description: Option<&str>, ) -> Result<()>

Updates an asset’s metadata fields.

This method allows updating GPS coordinates, date/time, and description for an asset. Only non-None fields will be sent in the update request.

§Arguments
  • asset_id - The ID of the asset to update
  • latitude - New GPS latitude (optional)
  • longitude - New GPS longitude (optional)
  • date_time_original - New original date/time as ISO 8601 string (optional)
  • description - New description (optional)
§Errors

Returns an error if:

  • The HTTP request fails
  • The server returns an error response
Source

pub async fn upload_asset(&self, file_path: &Path) -> Result<UploadResponse>

Uploads a file to Immich as a new asset.

§Arguments
  • file_path - Path to the file to upload
§Returns

Information about the uploaded asset including its new ID.

§Errors

Returns an error if:

  • The file cannot be read
  • The HTTP request fails
  • The server returns an error response

Trait Implementations§

Source§

impl Clone for ImmichClient

Source§

fn clone(&self) -> ImmichClient

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for ImmichClient

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Sized + Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more