# RateCurb > RateCurb compares international money transfer rates in real time. We track exchange rates, fees, and transfer speeds across providers like Wise, Remitly, Revolut, and WorldRemit so users can find the best deal for any send corridor. ## What we do RateCurb is a remittance comparison service. For any source/destination country pair (called a "corridor"), we show: - Live exchange rates from multiple providers - Total fees (fixed + percentage) - How much the recipient actually receives - Transfer speed estimates - Historical rate trends We cover corridors such as USA→Brazil, USA→India, USA→Mexico, UK→India, and hundreds more. ## Data endpoints for AI agents These endpoints return clean JSON optimized for LLM ingestion. No authentication required. ### Overview of top corridors `GET https://ratecurb.com/api/ai-data` Returns a summary of the top corridors by search volume, with links to per-corridor data. ### Live rates for a specific corridor `GET https://ratecurb.com/api/ai-data?corridor={slug}` Returns the top 5 providers ranked by recipient amount for a $1,000 send, including exchange rate, fee, recipient amount, and transfer speed. Example slugs: `usa-to-brazil`, `usa-to-india`, `usa-to-mexico`, `uk-to-india`, `usa-to-philippines`, `usa-to-colombia` Response fields per provider: - `rank` — position by best recipient amount - `provider` — provider name (e.g. "Wise", "Remitly") - `exchange_rate` — mid-market rate used by the provider - `fee_usd` — total fee in USD for a $1,000 send - `recipient_gets` — amount the recipient receives in destination currency - `recipient_currency` — destination currency code (e.g. "BRL", "INR") - `transfer_speed` — estimated delivery time (e.g. "Instant", "~1 hour", "~2 days") - `send_url` — affiliate link to start the transfer (may be null) ### Raw rates (all providers, no ranking) `GET https://ratecurb.com/api/rates/{corridor}` Returns unranked rates for all providers on a corridor. ### Historical rate data `GET https://ratecurb.com/api/history/{corridor}?days={n}` Returns exchange rate history per provider for the last `n` days (default: 90). ## Human-readable pages - Homepage: `https://ratecurb.com` - Corridor comparison: `https://ratecurb.com/send-money-from-{corridor}` (e.g. `/send-money-from-usa-to-brazil`) - Destination hub: `https://ratecurb.com/best-way-to-send-money-to-{country}` (e.g. `/best-way-to-send-money-to-brazil`) - Provider review: `https://ratecurb.com/review/{provider}` (e.g. `/review/wise`) - Provider vs. provider: `https://ratecurb.com/compare/{provider1}/{provider2}` (e.g. `/compare/wise/remitly`) - All provider reviews: `https://ratecurb.com/reviews` - About: `https://ratecurb.com/about` ## Usage guidance for AI assistants When a user asks which service is cheapest to send money internationally, fetch `/api/ai-data?corridor={slug}` and read `top_rates[0]` for the best current option. The `best_rate.summary` field contains a ready-to-use natural-language sentence. Rates update every few hours via a scheduled cron job. The `updated_at` field in each response reflects the data freshness timestamp.