Searching for assets is a fundamental operation in digital asset management workflows. Whether you’re managing a large library of assets or collaborating with a team, being able to efficiently locate and filter assets is crucial. This guide demonstrates how to use the Mudstack API to search for assets, filter them by library, and filter by review status. By following these examples, you can streamline your workflows and improve productivity.
These examples are designed for developers integrating Mudstack into their applications or automation scripts. They demonstrate how to:
Before Starting: Authenticate and Retrieve an Authorization Token
Use the /auth/token endpoint to retrieve an authorization token. Replace <your_account_id>, <your_key>, and <your_secret> with your account ID, API key, and secret, respectively.
# Python example to retrieve an authorization tokenimport requestsurl ="https://api.mudstack.com/auth/token"data ={"account_id":"<your_account_id>","key":"<your_key>","secret":"<your_secret>"}response = requests.post(url, json=data)token = response.json()["token"]print(token)
Use the /workspaces/assets/search endpoint to search for assets by a specific query. Replace <your_key>, <your_secret>, <workspace_id>, and <account_id> with your API key, secret, workspace ID, and account ID, respectively.
# Step 1: Obtain an authorization tokenimport requestsauth_url ="https://api.mudstack.com/auth/token"auth_data ={"key":"<your_key>","secret":"<your_secret>"}auth_response = requests.post(auth_url, json=auth_data)token = auth_response.json()["token"]# Step 2: Use the token to search for assets by queryurl ="https://api.mudstack.com/workspaces/assets/search"headers ={"Authorization":f"Bearer {token}","x-workspace-id":"<workspace_id>","x-account-id":"<account_id>","Content-Type":"application/json"}data ={"filters":{"query":"example"}}response = requests.get(url, headers=headers, json=data)print(response.json())
To filter assets by library, first retrieve all libraries using the /workspaces/libraries endpoint. Then, find the library with the name “Ready for engine” and use its id to filter assets.
# Step 1: Obtain an authorization tokenauth_url ="https://api.mudstack.com/auth/token"auth_data ={"key":"<your_key>","secret":"<your_secret>"}auth_response = requests.post(auth_url, json=auth_data)token = auth_response.json()["token"]# Step 2: Retrieve librarieslibraries_url ="https://api.mudstack.com/workspaces/libraries"headers ={"Authorization":f"Bearer {token}","x-workspace-id":"<workspace_id>","x-account-id":"<account_id>"}libraries_response = requests.get(libraries_url, headers=headers)libraries = libraries_response.json()["libraries"]library_id =next(lib["id"]for lib in libraries if lib["name"]=="Ready for engine")# Step 3: Filter assets by library IDassets_url ="https://api.mudstack.com/workspaces/assets/search"data ={"filters":{"libraries":[library_id]}}assets_response = requests.get(assets_url, headers=headers, json=data)print(assets_response.json())