Dungeon Fighter Online integration
Dungeon Fighter Online (DFO) is an arcade-style, side-scrolling action game…
- Provider
- dungeon_fighter_online
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Dungeon Fighter Online from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Dungeon Fighter Online'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(
"DUNGEON_FIGHTER_ONLINE_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 Dungeon Fighter Online 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
25 actions exposed via the
Dungeon Fighter Online integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DUNGEON_FIGHTER_ONLINE_CHARACTER_BASE_INFO -
DUNGEON_FIGHTER_ONLINE_CHARACTER_SEARCH -
DUNGEON_FIGHTER_ONLINE_CHARACTER_SKILL_BUFF_AVATAR -
DUNGEON_FIGHTER_ONLINE_CHARACTER_SKILL_BUFF_STATUS -
DUNGEON_FIGHTER_ONLINE_CHARACTER_STATUS_INFO -
DUNGEON_FIGHTER_ONLINE_CHARACTER_TIMELINE -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_AVATAR -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_BUFF_CREATURE -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_CREATURE -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_EQUIPMENT -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_INSIGNIA -
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_SKILL_BUFF
Show all 25 actions
-
DUNGEON_FIGHTER_ONLINE_GET_CHARACTER_SKILL_STYLE -
DUNGEON_FIGHTER_ONLINE_GET_ITEM_HASHTAGS -
DUNGEON_FIGHTER_ONLINE_GET_ITEM_INFO -
DUNGEON_FIGHTER_ONLINE_GET_ITEM_SHOP_INFO -
DUNGEON_FIGHTER_ONLINE_GET_JOBS -
DUNGEON_FIGHTER_ONLINE_GET_JOB_SKILLS -
DUNGEON_FIGHTER_ONLINE_GET_MULTIPLE_ITEMS -
DUNGEON_FIGHTER_ONLINE_GET_MULTIPLE_SKILLS -
DUNGEON_FIGHTER_ONLINE_GET_SERVER_LIST -
DUNGEON_FIGHTER_ONLINE_GET_SKILL_INFO -
DUNGEON_FIGHTER_ONLINE_SEARCH_CHARACTERS_BY_FAME -
DUNGEON_FIGHTER_ONLINE_SEARCH_ITEMS -
DUNGEON_FIGHTER_ONLINE_SEARCH_SET_ITEMS
Build with Dungeon Fighter Online
Open OverSkill, describe what you want to build, and reference Dungeon Fighter Online in your prompt — the AI will wire up the integration automatically.