Countdown API integration
Countdown API provides real-time eBay product data, including product details,…
- Provider
- countdown_api
- Category
- Ecommerce
- Setup
- User-supplied API key
- Actions
- 25 available
Quick start
Call Countdown API from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Countdown API'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(
"COUNTDOWN_API_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 Countdown API 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
Countdown API integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
COUNTDOWN_API_CLEAR_ALL_REQUESTS -
COUNTDOWN_API_COLLECTIONS_CREATE_COLLECTION -
COUNTDOWN_API_COLLECTIONS_GET_COLLECTION -
COUNTDOWN_API_COLLECTIONS_LIST_COLLECTIONS -
COUNTDOWN_API_COLLECTIONS_START_COLLECTION -
COUNTDOWN_API_COLLECTIONS_UPDATE_COLLECTION -
COUNTDOWN_API_CORE_API_SEND_REQUEST -
COUNTDOWN_API_CREATE_COLLECTION_REQUEST -
COUNTDOWN_API_CREATE_DESTINATION -
COUNTDOWN_API_DELETE_COLLECTION -
COUNTDOWN_API_DELETE_DESTINATION -
COUNTDOWN_API_DELETE_SINGLE_REQUEST
Show all 25 actions
-
COUNTDOWN_API_DESTINATIONS_LIST_DESTINATIONS -
COUNTDOWN_API_FIND_COLLECTION_REQUESTS -
COUNTDOWN_API_GET_ACCOUNT -
COUNTDOWN_API_LIST_ERROR_LOGS -
COUNTDOWN_API_REQUESTS_EXPORT_CSV -
COUNTDOWN_API_REQUESTS_EXPORT_JSON -
COUNTDOWN_API_REQUESTS_UPDATE_SINGLE_REQUEST -
COUNTDOWN_API_RESULTS_GET_RESULT_SET -
COUNTDOWN_API_RESULTS_LIST_RESULT_SETS -
COUNTDOWN_API_RESULTS_RESEND_RESULT_SET_WEBHOOK -
COUNTDOWN_API_STOP_ALL_COLLECTIONS -
COUNTDOWN_API_STOP_COLLECTION -
COUNTDOWN_API_UPDATE_DESTINATION
Build with Countdown API
Open OverSkill, describe what you want to build, and reference Countdown API in your prompt — the AI will wire up the integration automatically.