Exa integration
Exa focuses on data extraction and search, helping teams gather, analyze, and…
- Provider
- exa
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 18 available
Quick start
Call Exa from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Exa'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(
"EXA_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 Exa 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
18 actions exposed via the
Exa integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
EXA_ANSWER -
EXA_CREATE_IMPORT -
EXA_CREATE_MONITOR -
EXA_CREATE_RESEARCH -
EXA_CREATE_WEBSET -
EXA_DELETE_IMPORT -
EXA_DELETE_WEBSET -
EXA_FIND_SIMILAR -
EXA_GET_API_KEY -
EXA_GET_CONTENTS_ACTION -
EXA_GET_EVENT -
EXA_GET_RESEARCH
Show all 18 actions
-
EXA_LIST_EVENTS -
EXA_LIST_IMPORTS -
EXA_LIST_RESEARCH -
EXA_LIST_WEBHOOKS -
EXA_SEARCH -
EXA_UPDATE_IMPORT
Build with Exa
Open OverSkill, describe what you want to build, and reference Exa in your prompt — the AI will wire up the integration automatically.