RedCircle API integration
RedCircle API is the real-time Target product data API for accessing Target…
- Provider
- redcircle_api
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 32 available
Quick start
Call RedCircle API from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to RedCircle 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(
"REDCIRCLE_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 RedCircle 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
32 actions exposed via the
RedCircle API integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
REDCIRCLE_API_ADD_ZIPCODES -
REDCIRCLE_API_CLEAR_COLLECTION_REQUESTS -
REDCIRCLE_API_CREATE_COLLECTION -
REDCIRCLE_API_CREATE_DESTINATION -
REDCIRCLE_API_CREATE_REQUESTS -
REDCIRCLE_API_DELETE_COLLECTION -
REDCIRCLE_API_DELETE_DESTINATION -
REDCIRCLE_API_DELETE_REQUEST -
REDCIRCLE_API_DELETE_REQUESTS_BULK -
REDCIRCLE_API_DELETE_ZIPCODES -
REDCIRCLE_API_GET_ACCOUNT -
REDCIRCLE_API_GET_COLLECTION
Show all 32 actions
-
REDCIRCLE_API_GET_REQUESTS_CSV_LINKS -
REDCIRCLE_API_GET_REQUESTS_JSON_LINKS -
REDCIRCLE_API_GET_RESULT_SET_CSV -
REDCIRCLE_API_GET_RESULT_SET_JSON -
REDCIRCLE_API_GET_RESULT_SET_JSONLINES -
REDCIRCLE_API_GET_TARGET_PRODUCT_DATA -
REDCIRCLE_API_LIST_CATEGORIES -
REDCIRCLE_API_LIST_COLLECTIONS -
REDCIRCLE_API_LIST_DESTINATIONS -
REDCIRCLE_API_LIST_ERROR_LOGS -
REDCIRCLE_API_LIST_REQUESTS_BY_PAGE -
REDCIRCLE_API_LIST_RESULT_SETS -
REDCIRCLE_API_LIST_ZIPCODES -
REDCIRCLE_API_RESEND_WEBHOOK -
REDCIRCLE_API_START_COLLECTION -
REDCIRCLE_API_STOP_ALL_COLLECTIONS -
REDCIRCLE_API_STOP_COLLECTION -
REDCIRCLE_API_UPDATE_COLLECTION -
REDCIRCLE_API_UPDATE_DESTINATION -
REDCIRCLE_API_UPDATE_REQUEST
Build with RedCircle API
Open OverSkill, describe what you want to build, and reference RedCircle API in your prompt — the AI will wire up the integration automatically.