DEV Community integration
DEV Community (dev.to) is a community of software developers where you can…
- Provider
- devto
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 28 available
Quick start
Call DEV Community from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to DEV Community'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(
"DEVTO_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 DEV Community 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
28 actions exposed via the
DEV Community integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
DEVTO_CREATE_ARTICLE -
DEVTO_GET_ARTICLE -
DEVTO_GET_ARTICLE_BY_PATH -
DEVTO_GET_COMMENT -
DEVTO_GET_CURRENT_USER -
DEVTO_GET_LISTING -
DEVTO_GET_ORGANIZATION -
DEVTO_GET_PROFILE_IMAGE -
DEVTO_GET_USER -
DEVTO_LIST_ARTICLES -
DEVTO_LIST_COMMENTS -
DEVTO_LIST_FOLLOWED_TAGS
Show all 28 actions
-
DEVTO_LIST_FOLLOWERS -
DEVTO_LIST_LATEST_ARTICLES -
DEVTO_LIST_LISTINGS -
DEVTO_LIST_LISTINGS_BY_CATEGORY -
DEVTO_LIST_ORGANIZATION_ARTICLES -
DEVTO_LIST_ORGANIZATION_USERS -
DEVTO_LIST_PODCAST_EPISODES -
DEVTO_LIST_READING_LIST -
DEVTO_LIST_TAGS -
DEVTO_LIST_USER_ALL_ARTICLES -
DEVTO_LIST_USER_ARTICLES -
DEVTO_LIST_USER_PUBLISHED_ARTICLES -
DEVTO_LIST_USER_UNPUBLISHED_ARTICLES -
DEVTO_LIST_VIDEOS -
DEVTO_UPDATE_ARTICLE -
DEVTO_UPDATE_LISTING
Build with DEV Community
Open OverSkill, describe what you want to build, and reference DEV Community in your prompt — the AI will wire up the integration automatically.