RedCircle API Integration for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with RedCircle API MCP or direct API to search Target's product catalog, retrieve product details, access reviews, and explore category data through natural language.
RedCircle API Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try RedCircle API now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Add ZipcodesTool to add zipcodes to your RedCircle API account for geolocation targeting.
Clear Collection RequestsTool to remove all requests from a specified collection.
Create CollectionTool to create a new collection for running up to 15,000 requests on a schedule.
Create DestinationTool to create a new destination for uploading Collection Result Sets to cloud storage.
Create RequestsTool to add up to 1,000 requests to an existing collection.
Delete CollectionTool to remove a collection from the system by ID.
Delete DestinationTool to remove a destination from your RedCircle API account.
Delete Request from CollectionTool to remove an individual request from a collection.
Delete Requests In BulkTool to delete multiple requests from a collection in bulk.
Delete ZipcodesTool to remove zipcodes from your RedCircle API account.
Get Account InformationTool to retrieve account information, usage metrics, and platform status.
Get CollectionTool to retrieve complete information about a specific collection.
Get Requests CSV LinksTool to retrieve CSV download links for all requests in a collection.
Get Requests JSON LinksTool to retrieve download links for all requests in a collection in JSON format.
Get Result Set CSVTool to retrieve a result set in CSV format with optional field filtering.
Get Result Set JSONTool to retrieve a result set in JSON format with download links.
Get Result Set JSON LinesTool to retrieve a result set in JSON Lines format with download links.
Get Target Product DataTool to retrieve Target data in real-time including search results, product information, reviews, or category listings.
List CategoriesTool to retrieve all top-level (root) categories or filter results using optional parameters.
List CollectionsTool to retrieve all collections configured on your RedCircle API account with filtering and pagination.
List DestinationsTool to retrieve all destinations configured on your RedCircle API account with pagination and filtering.
List Error LogsTool to list all error logs on your RedCircle API account.
List Requests by PageTool to retrieve requests for a collection in paginated format.
List Result SetsTool to list all result sets for a collection.
List ZipcodesTool to retrieve all zipcodes associated with your account with optional filtering.
Resend WebhookTool to resend a previously configured webhook POST request for a result set.
Start CollectionTool to initiate execution of a RedCircle API collection.
Stop All CollectionsTool to halt all currently active collections on your account.
Stop CollectionTool to halt an active collection in queued or running state.
Update CollectionTool to update an existing collection's configuration and settings.
Update DestinationTool to modify an existing destination configuration on your RedCircle API account.
Update RequestTool to modify a request within a collection.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK for Python or TypeScript

Initialize Client and Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Import and initialize the Composio client, then create a Tool Router session for RedCircle API

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to RedCircle API tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Get Target product details for "Echo Dot" and show its latest reviews.')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI agent (Anthropic Claude or Mastra)

Why Use Composio?

AI Native RedCircle API Integration

  • Supports both RedCircle API MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your RedCircle API data

Managed Auth

  • Built-in OAuth handling with automatic token refresh and rotation
  • Central place to manage, scope, and revoke RedCircle API access
  • Per user and per environment credentials instead of hard-coded keys

Agent Optimized Design

  • Tools are tuned using real error and success rates to improve reliability over time
  • Comprehensive execution logs so you always know what ran, when, and on whose behalf

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can access RedCircle API
  • Scoped, least privilege access to RedCircle API resources
  • Full audit trail of agent actions to support review and compliance

Frequently Asked Questions

Do I need my own developer credentials to use RedCircle API with Composio?

Yes, RedCircle API requires you to configure your own API key. Once set up, Composio handles secure credential storage and API request handling for you.

Can I use multiple toolkits together?

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Is Composio secure?

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

What if the API changes?

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.