Scale ai integration
Scale AI provides data labeling and annotation services for machine learning,…
- Provider
- scale_ai
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 40 available
Quick start
Call Scale ai from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Scale ai'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(
"SCALE_AI_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 Scale ai 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
40 actions exposed via the
Scale ai integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
SCALE_AI_ADD_STUDIO_ASSIGNMENTS -
SCALE_AI_ADD_TASK_TAGS -
SCALE_AI_CREATE_BATCH -
SCALE_AI_CREATE_DOCUMENT_TRANSCRIPTION_TASK -
SCALE_AI_CREATE_IMAGE_ANNOTATION_TASK -
SCALE_AI_CREATE_LIDAR_ANNOTATION_TASK -
SCALE_AI_CREATE_LIDAR_SEGMENTATION_TASK -
SCALE_AI_CREATE_NAMED_ENTITY_RECOGNITION_TASK -
SCALE_AI_CREATE_SEGMENTATION_ANNOTATION_TASK -
SCALE_AI_CREATE_TEXT_COLLECTION_TASK -
SCALE_AI_CREATE_VIDEO_ANNOTATION_TASK -
SCALE_AI_CREATE_VIDEO_PLAYBACK_ANNOTATION_TASK
Show all 40 actions
-
SCALE_AI_DELETE_TASK_TAGS -
SCALE_AI_DELETE_TASK_UNIQUE_ID -
SCALE_AI_FINALIZE_BATCH -
SCALE_AI_GET_ASSETS -
SCALE_AI_GET_BATCH -
SCALE_AI_GET_BATCH_STATUS -
SCALE_AI_GET_FIXLESS_AUDITS -
SCALE_AI_GET_PROJECT -
SCALE_AI_GET_QUALITY_LABELERS -
SCALE_AI_GET_STUDIO_ASSIGNMENTS -
SCALE_AI_GET_STUDIO_BATCHES -
SCALE_AI_GET_TEAMS -
SCALE_AI_GET_V1_TASK -
SCALE_AI_GET_V1_TASK_RESPONSE_URL -
SCALE_AI_IMPORT_FILE -
SCALE_AI_INVITE_TEAM_MEMBER -
SCALE_AI_LIST_BATCHES -
SCALE_AI_LIST_PROJECTS -
SCALE_AI_LIST_TASKS -
SCALE_AI_POST_V1_TASK_SEND_CALLBACK -
SCALE_AI_REMOVE_STUDIO_ASSIGNMENTS -
SCALE_AI_RESET_BATCH_PRIORITIES -
SCALE_AI_SET_BATCH_PRIORITIES -
SCALE_AI_SET_PROJECT_ONTOLOGY -
SCALE_AI_SET_PROJECT_PARAMS -
SCALE_AI_SET_TASK_METADATA -
SCALE_AI_UPDATE_TASK_UNIQUE_ID -
SCALE_AI_UPLOAD_FILE
Build with Scale ai
Open OverSkill, describe what you want to build, and reference Scale ai in your prompt — the AI will wire up the integration automatically.