For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Developer Tools
CommunityContact UsConsole
DocsAPI Reference
DocsAPI Reference
  • API Reference
      • GETAdvanced search for Assets
      • POSTAdvanced search for Assets
      • POSTBulk copy assets
      • DELBulk delete assets
      • POSTCopy asset
      • POSTCreate an Asset
      • DELDelete an Asset
      • GETFetch child Assets
      • GETGet an Asset
      • GETGet audio for an Asset
      • GETGet the subtitles for an Asset
      • POSTMove asset
      • POSTRequest upload URLs for real-time upload
      • GETSearch for Assets
      • POSTSearch for Assets
      • DELUnversion an Asset
      • PUTUpdate an Asset
      • POSTVersion an Asset

© 2026 Adobe Inc. All rights reserved.

TermsPrivacyDo not sell or share my personal information
Developer-friendly docs for your API
Logo
Developer Tools
CommunityContact UsConsole
API ReferenceAssets

Advanced search for Assets

GET
https://api.frame.io/v2/search/library
GET
/v2/search/library
1import requests
2
3url = "https://api.frame.io/v2/search/library"
4
5payload = {}
6headers = {
7 "Authorization": "Bearer <token>",
8 "Content-Type": "application/json"
9}
10
11response = requests.get(url, json=payload, headers=headers)
12
13print(response.json())
1[
2 {
3 "account_id": "a3f1c9d2-4b7e-4f8a-9d3e-2b5f7c6a1d9e",
4 "archive_from": "2024-01-15T09:30:00Z",
5 "archive_scheduled_at": "2024-01-15T09:30:00Z",
6 "archive_status": "pending",
7 "archived_at": "2024-01-15T09:30:00Z",
8 "asset_type": "document",
9 "bundle": true,
10 "bundle_view": "detailed",
11 "cover_asset_id": "b7e9f8a2-3c4d-11ec-8d3d-0242ac130003",
12 "creator": {
13 "digest_frequency": "weekly",
14 "image_32": "https://cdn.frame.io/images/users/32/user123.png",
15 "image_128": "https://cdn.frame.io/images/users/128/user123.png",
16 "from_google": true,
17 "mfa_enforced_at": "2023-11-01T12:00:00Z",
18 "email": "jane.doe@example.com",
19 "name": "Jane Doe",
20 "image_64": "https://cdn.frame.io/images/users/64/user123.png",
21 "timezone_value": "America/New_York",
22 "account_id": "a3f1c9d2-4b7e-4f8a-9d3e-2b5f7c6a1d9e",
23 "updated_at": "2024-04-10T15:45:00Z",
24 "image_256": "https://cdn.frame.io/images/users/256/user123.png",
25 "_type": "user",
26 "user_hash": "userhash1234567890",
27 "upload_url": "https://upload.frame.io/user123",
28 "profile_image": "https://cdn.frame.io/images/users/profile/user123.png",
29 "first_login_at": "2022-05-20T08:30:00Z",
30 "joined_via": "google",
31 "id": "b7e9f8a2-3c4d-11ec-8d3d-0242ac130003",
32 "next_digest_date": "2024-04-17T08:00:00Z",
33 "last_seen": "2024-04-12T10:15:00Z",
34 "inserted_at": "2022-05-20T08:30:00Z",
35 "from_adobe": true,
36 "avatar_color": "#4A90E2",
37 "highest_account_role": "admin",
38 "integrations": [
39 "slack",
40 "dropbox"
41 ],
42 "roles": {
43 "admin": true,
44 "id": "role123",
45 "sales": false,
46 "support": true,
47 "service_desk": false
48 },
49 "user_default_color": "#FF5733"
50 },
51 "frames": 2400,
52 "hard_deleted_at": "2024-02-14T09:30:00Z",
53 "id": "c9d2a3f1-4b7e-4f8a-9d3e-2b5f7c6a1d9e",
54 "index": 12.5,
55 "is_bundle_child": false,
56 "is_hls_required": true,
57 "is_session_watermarked": false,
58 "item_count": 15,
59 "label": "approved",
60 "metadata": {
61 "location": "New York Studio",
62 "camera": "RED Komodo",
63 "project_phase": "post-production"
64 },
65 "metadata_flags": {
66 "id": "d4e5f6a7-8b9c-4d0e-9f1a-2b3c4d5e6f7g",
67 "is_360": false,
68 "is_hdr": true,
69 "is_original_player_compatible": true
70 },
71 "name": "Project_X_Final_Script.pdf",
72 "original": "https://cdn.frame.io/assets/c9d2a3f1-4b7e-4f8a-9d3e-2b5f7c6a1d9e/original.pdf",
73 "parent_asset_id": "e1f2a3b4-c5d6-7e8f-9012-3456789abcde",
74 "project_id": "f1e2d3c4-b5a6-7890-1234-56789abcdef0",
75 "properties": {
76 "description": "Final approved script for Project X"
77 },
78 "required_transcodes": {
79 "cover": true,
80 "finalized": [
81 "thumb",
82 "h264_720",
83 "image_high"
84 ],
85 "h264_1080_best": true,
86 "h264_2160": false,
87 "h264_360": true,
88 "h264_540": true,
89 "h264_720": true,
90 "image_full": true,
91 "image_high": true,
92 "page_proxy": true,
93 "thumb": true,
94 "thumb_540": true,
95 "thumb_orig_ar_540": false,
96 "thumb_scrub": true
97 },
98 "team_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
99 "user_permissions": {
100 "can_download": true,
101 "can_modify_template": false,
102 "can_public_share_presentation": true,
103 "can_public_share_review_link": true,
104 "can_share_downloadable_presentation": false,
105 "can_share_downloadable_review_link": true,
106 "can_share_unwatermarked_presentation": false,
107 "can_share_unwatermarked_review_link": true
108 },
109 "type": "file",
110 "view_count": 152
111 }
112]
Advanced Asset Search
Was this page helpful?
Previous

Advanced search for Assets

Next

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Query parameters

account_idstringOptionalformat: "uuid"
filterobjectOptional
Custom ES filters to apply to your query
include_deletedbooleanOptional

Flag to include soft-deleted records in results

optsobjectOptional
Additional request options
pageintegerOptional
The page to retrieve
page_sizeintegerOptional
The number of results to include in the page
qstringOptional
Search text
querystringOptional
Search text
sortstringOptional
Sorting parameters

Response headers

linkstring
Pagination links
page-numberinteger
Current page of results
per-pageinteger
Number of entries per page
totalinteger
Total entries across all pagess
total-pagesinteger
Number of pages

Response

Assets success response
object

Errors

401
Unauthorized Error