Retrieves all registered add-ons, including extensions and plugins.
https://{serverurl}/bsp/api/v1/bmp/addons
Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52
Optional. Filter by add-on type: 'plugins' or 'extensions'
Optional. Search add-ons by name (case-insensitive partial match). Example: ?name=uBlock
Optional. Filter by browser type ID (1=Chrome, 2=Firefox, 3=IE, 5=Edge, 31=Ulaa, 1024=Other Chromium). Accepts comma-separated values for multiple browsers
Optional. Maximum number of add-ons to return per page. Used for pagination
Optional. Number of add-ons to skip before starting to return results. Used for pagination
Optional. Token for pagination to retrieve the next set of results
Optional. Search by add-on identifier (extension ID or plugin CLSID/GUID)
curl --request GET \
--url https://appdomains/bsp/api/v1/bmp/addons \
--header 'Accept: application/json' \
--header 'Authorization: Zoho-oauthtoken d92d4xxxxxxxxxxxxx15f52'Pagination metadata containing navigation URLs for next and previous pages
URL for the next page of results. Null if no more pages
URL for the previous page of results. Null if on the first page
Addon records (extensions and/or plugins) for the current page
Browser type code. Present only for extension entries. 1=Chrome, 2=Firefox, 3=Internet Explorer, 5=Chromium Edge, 31=Ulaa, 1024=Other Chromium
Addon display name
Unique binary ID used as the universal addon reference
Addon identifier webstore ID for extensions, CLSID for plugins
Plugin type code. Present only for plugin entries. 100=Plugin Group, 101=Plugin Version Group
Unauthorized error code: credentials missing, expired, or invalid
Authentication failure reason
Error code indicating insufficient permissions
Message indicating insufficient privileges to access this resource
Rate limit error code returned when the API call reached threshold
Rate limit exceeded message with retry guidance
Message describing the internal server error
Error code identifying the type of server error
Paginated extension list
{
"addons": [
{
"browser_type": "1",
"name": "uBlock Origin",
"binary_id": "100",
"id": "cjpalhdlnbpafiamejdnhcphjbkeiagm"
},
{
"browser_type": "5",
"name": "MoveTab",
"binary_id": "48",
"id": "ebldafnijcbblaaabcehdamipojmicmg"
},
{
"browser_type": "1024",
"name": "Dark Reader",
"binary_id": "103",
"id": "eimadpbcbfnmbkopoojfekhnkhdbieeh"
}
],
"paging": {
"next": "<server-url>/bsp/api/v1/bmp/addons?skip-token=NTA6LTQ4OjI6MTc3NTQ1NTc5NjY5Ng%3D%3D"
}
}
Paginated plugin list
{
"addons": [
{
"name": "Java Plugin",
"binary_id": "104",
"id": "{CAFEEFAC-0018-0000-FFFF-ABCDEFFEDCBA}",
"type": 100
}
]
}
Empty result
{
"addons": []
}
Unauthorized
{
"errorCode": "UNAUTHORIZED",
"errorMsg": "You are not authorized to perform this action"
}
Insufficient permissions
{
"errorCode": "FORBIDDEN",
"errorMsg": "You do not have permission to access this resource"
}
Rate limit exceeded
{
"errorCode": "RATE_LIMIT_EXCEEDED",
"errorMsg": "You have exceeded the maximum number of API calls. Please try again later."
}
Server error
{
"error_description": "Internal Server error, Please try again in a moment.",
"error_code": "COM0004"
}
![]()
Duration: 1 minute | Threshold: 120 | Lock period: 5 minutes
Duration - Time window for the threshold.
Threshold - Number of API calls allowed within the specified duration.
Lock Period - Wait time before consecutive API requests.
© 2026, Zoho Corporation Pvt. Ltd. All Rights Reserved.