Google Cloud Vision integration
Google Cloud Vision API enables developers to integrate vision detection…
- Provider
- google_cloud_vision
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 29 available
Quick start
Call Google Cloud Vision from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Google Cloud Vision's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"GOOGLE_CLOUD_VISION_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Google Cloud Vision API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
29 actions exposed via the
Google Cloud Vision integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
GOOGLE_CLOUD_VISION_ANNOTATE_FILES -
GOOGLE_CLOUD_VISION_ANNOTATE_FILES_ASYNC_BATCH -
GOOGLE_CLOUD_VISION_ANNOTATE_IMAGES -
GOOGLE_CLOUD_VISION_ANNOTATE_IMAGES_ASYNC_BATCH -
GOOGLE_CLOUD_VISION_ANNOTATE_LOCATION_IMAGES -
GOOGLE_CLOUD_VISION_CREATE_PRODUCT -
GOOGLE_CLOUD_VISION_CREATE_PRODUCT_SET -
GOOGLE_CLOUD_VISION_CREATE_REFERENCE_IMAGE -
GOOGLE_CLOUD_VISION_DELETE_PRODUCT -
GOOGLE_CLOUD_VISION_GET_PRODUCT -
GOOGLE_CLOUD_VISION_GET_PRODUCT_SET -
GOOGLE_CLOUD_VISION_IMPORT_PRODUCT_SETS
Show all 29 actions
-
GOOGLE_CLOUD_VISION_LIST_INDEX_ENDPOINTS -
GOOGLE_CLOUD_VISION_LIST_LOCATIONS -
GOOGLE_CLOUD_VISION_LIST_OPERATIONS -
GOOGLE_CLOUD_VISION_PURGE_PRODUCTS -
GOOGLE_CLOUD_VISION_UPDATE_PRODUCT -
GOOGLE_CLOUD_VISION_UPDATE_PRODUCT_SET -
GOOGLE_CLOUD_VISION_VISION_ADD_PRODUCT_TO_PRODUCT_SET -
GOOGLE_CLOUD_VISION_VISION_CANCEL_OPERATION -
GOOGLE_CLOUD_VISION_VISION_DELETE_OPERATION -
GOOGLE_CLOUD_VISION_VISION_DELETE_PRODUCT_SET -
GOOGLE_CLOUD_VISION_VISION_DELETE_REFERENCE_IMAGE -
GOOGLE_CLOUD_VISION_VISION_GET_OPERATION -
GOOGLE_CLOUD_VISION_VISION_GET_REFERENCE_IMAGE -
GOOGLE_CLOUD_VISION_VISION_LIST_PRODUCTS_IN_PRODUCT_SET -
GOOGLE_CLOUD_VISION_VISION_LIST_PROJECTS -
GOOGLE_CLOUD_VISION_VISION_LIST_REFERENCE_IMAGES -
GOOGLE_CLOUD_VISION_VISION_REMOVE_PRODUCT_FROM_PRODUCT_SET
Build with Google Cloud Vision
Open OverSkill, describe what you want to build, and reference Google Cloud Vision in your prompt — the AI will wire up the integration automatically.