Parallel integration
Parallel offers a Task API for automated, structured web research, transforming…
- Provider
- parallel
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 32 available
Quick start
Call Parallel from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Parallel'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(
"PARALLEL_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 Parallel 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
32 actions exposed via the
Parallel integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
PARALLEL_ADD_ENRICHMENT_TO_FIND_ALL_RUN -
PARALLEL_ADD_RUNS_TO_TASK_GROUP -
PARALLEL_CANCEL_FIND_ALL_RUN -
PARALLEL_CREATE_CHAT_COMPLETIONS -
PARALLEL_CREATE_MONITOR -
PARALLEL_CREATE_TASK_GROUP -
PARALLEL_CREATE_TASK_RUN -
PARALLEL_DELETE_MONITOR -
PARALLEL_EXTEND_FIND_ALL_RUN -
PARALLEL_EXTRACT -
PARALLEL_FETCH_TASK_GROUP_RUNS -
PARALLEL_FIND_ALL
Show all 32 actions
-
PARALLEL_GET_FIND_ALL_RUN_RESULT -
PARALLEL_GET_FIND_ALL_RUN_SCHEMA -
PARALLEL_INGEST_FIND_ALL_RUN -
PARALLEL_LIST_MONITOR_EVENTS -
PARALLEL_LIST_MONITORS -
PARALLEL_RETRIEVE_EVENT_GROUP -
PARALLEL_RETRIEVE_FIND_ALL_RUN_STATUS -
PARALLEL_RETRIEVE_MONITOR -
PARALLEL_RETRIEVE_TASK_GROUP -
PARALLEL_RETRIEVE_TASK_GROUP_RUN -
PARALLEL_RETRIEVE_TASK_RUN -
PARALLEL_RETRIEVE_TASK_RUN_INPUT -
PARALLEL_RETRIEVE_TASK_RUN_RESULT -
PARALLEL_SEARCH -
PARALLEL_SIMULATE_EVENT -
PARALLEL_STREAM_FIND_ALL_EVENTS -
PARALLEL_STREAM_TASK_GROUP_EVENTS -
PARALLEL_STREAM_TASK_RUN_EVENTS -
PARALLEL_SUGGEST_TASK -
PARALLEL_UPDATE_MONITOR
Build with Parallel
Open OverSkill, describe what you want to build, and reference Parallel in your prompt — the AI will wire up the integration automatically.