Arivo Hood Docs
Overview

What is Arivo Hood?

Arivo Hood is an AI-powered travel ecosystem built on Robinhood Chain. We're redesigning how the world searches, books, and earns rewards for travel by combining advanced AI agents with decentralized finance.

Arivo Hood Mascot
AI-Powered

Our AI agents scan thousands of providers to find the absolute best value for your trip.

Global Reach

Access over 500+ airlines, 2M+ hotels, and exclusive private jet charters worldwide.

DeFi Rewards

Stake $ARIVO to earn points hourly and unlock premium travel discounts.

Platform Capabilities

The Arivo Hood platform provides a comprehensive suite of travel services, all accessible through a unified interface or our robust API:

  • Commercial FlightsSearch and book international and domestic flights with real-time pricing and seat selection.
  • Private Jet ChartersExclusive access to the Arivo Hood Charter network with instant price estimates and luxury FBO options.
  • Premium HotelsCurated selection of global accommodations with member-exclusive rates.
  • Exotic Car RentalsFrom luxury sedans to high-performance supercars for your journey.

The OpenClaw Concept

OpenClaw is our open framework that allows developers to build their own AI travel agents. By leveraging the Arivo Hood API, these agents can autonomously search for deals, manage bookings, and optimize travel spending for users.

OpenClaw Community
Getting Started

Quick Start Guide

1

Connect Wallet

Connect your Robinhood Chain wallet to the Arivo Hood platform.

2

Acquire $ARIVO

Purchase $ARIVO tokens on Robinhood Chain to unlock membership tiers.

3

Start Staking

Stake your tokens to begin earning travel points every single hour.

4

Book Travel

Use your points or preferred crypto to book flights, hotels, and more.

Wallet Setup

Arivo Hood uses Robinhood Chain for its membership and rewards system. To interact with the platform, you'll need a compatible Robinhood Chain wallet.

MetaMask
Coinbase Wallet
Browser Wallet
Security Tip

Always double-check the URL before connecting your wallet. Arivo Hood will never ask for your seed phrase or private keys.

API Reference

Authentication

To access the Arivo Hood API, you must include a Bearer token in the Authorization header of your requests.

Authorization: Bearer YOUR_SESSION_TOKEN

Tokens are obtained via the /api/auth/connect endpoint after wallet signature verification.

Flights API

Our Commercial Flights API allows you to search for the best deals across 500+ global airlines.

Flights Mascot
GET
/api/travel/flights

Search for commercial flight offers based on origin, destination, and dates.

Parameters

ParamTypeDescription
originstringIATA code of departure airport (e.g., JFK)
destinationstringIATA code of arrival airport (e.g., LHR)
departureDatestringYYYY-MM-DD
adultsnumberNumber of adult passengers (default: 1)
travelClassstringECONOMY, PREMIUM_ECONOMY, BUSINESS, FIRST
POST
/api/travel/flights/price

Confirm final pricing and availability for a specific flight offer.

{ "flightOffer": { ...offerData } }

Private Jets API

The Arivo Hood Charter API provides instant access to private aviation, including price estimates and empty leg deals.

Private Jet Mascot
POST
/api/travel/jets/search

Search for available charter aircraft for a specific route.

{ "departureIcao": "KTEB", "arrivalIcao": "VNY", "passengers": 4 }
POST
/api/travel/jets/price

Get an instant charter price estimate for a specific route and aircraft class.

{ "departureIcao": "KTEB", "arrivalIcao": "VNY", "departureDate": "2024-12-01T12:00:00Z", "passengers": 4, "aircraftClass": "Midsize" }
GET
/api/travel/jets/empty-legs

Browse available empty leg segments at significant discounts.

GET
/api/travel/jets/airports

Search for private aviation airports by keyword or ICAO code.

GET /api/travel/jets/airports?search=Teterboro
GET
/api/travel/jets/weather

Get real-time METAR weather data for specific airports.

GET /api/travel/jets/weather?airports=KTEB,KVNY
GET
/api/travel/jets/aircraft-classes

Retrieve a list of supported private jet categories (e.g., Light, Midsize, Heavy).

Hotels API

GET
/api/travel/hotels

Search for hotel accommodations by city and dates.

GET /api/travel/hotels?cityCode=PAR&checkInDate=2024-12-01&checkOutDate=2024-12-05
GET
/api/travel/hotels/offer/:offerId

Retrieve full details for a specific hotel offer.

Cars API

GET
/api/travel/cars

Search for luxury and standard car rentals by location and date.

GET /api/travel/cars?location=MIA&pickupDate=2024-12-01&dropoffDate=2024-12-05

ACRISS Code Guide

Our API uses standard ACRISS codes for vehicle classification:

  • Category: M (Mini), E (Economy), C (Compact), I (Intermediate), S (Standard), F (Fullsize), P (Premium), L (Luxury)
  • Type: B (2-3 door), C (2/4 door), D (4-5 door), W (Estate/Wagon), V (Passenger Van), S (Sports), T (Convertible)
  • Transmission: M (Manual), A (Automatic)
  • Fuel/AC: R (Unspecified Fuel with AC), N (Unspecified Fuel without AC)

Activities API

GET
/api/travel/activities

Discover local tours and activities by geographical coordinates.

GET /api/travel/activities?latitude=48.8566&longitude=2.3522
GET
/api/travel/activities/:id

Get detailed information and booking options for a specific activity.

OpenClaw

OpenClaw Agent Framework

OpenClaw is an open framework designed for AI travel agents to autonomously search, compare, and book travel services via the Arivo Hood ecosystem.

OpenClaw Community

By using OpenClaw, developers can build bots that provide personalized travel assistance, monitor price drops, or handle complex multi-leg itineraries without manual intervention.

Autonomous Search

Agents can scan commercial flights, private jets, and hotels to find the best value based on user preferences.

Seamless Booking

Integrate directly with our checkout flow using points or crypto for friction-less transactions.

Bot Setup Guide

1. Authentication

Bots authenticate using a standard Bearer token. For automated agents, we recommend using a dedicated API key or a persistent session token associated with a service wallet.

Authorization: Bearer <YOUR_TOKEN>

2. Programmatic Search

Search across multiple categories to find the best deals. You can filter by price, duration, aircraft class (for jets), and more.

Example: Search Flight & Jets

// Search commercial flights
const
flights = await fetch('/api/travel/flights?origin=JFK&destination=LHR&departureDate=2024-12-01');

// Search private charter
const
jets = await fetch('/api/travel/jets/search', {
  method: 'POST',
  body: JSON.stringify({
    origin: 'VNY',
    destination: 'TEB',
    date: '2024-12-01',
    passengers: 4
  })
});

3. Compare & Filter

Compare results from different sources. For private jets, OpenClaw bots can analyze aircraft age, seating capacity, and total flight time to find the optimal luxury experience.

Checkout Integration

Once a bot has selected a travel option, it can initiate the checkout process. Arivo Hood supports multiple payment flows suitable for AI agents.

Points Payment

Best for loyalty-driven bots. Instant confirmation using accumulated Arivo Hood points.

POST /api/checkout/confirm-points

Crypto Payment

Generate a unique deposit address for ETH, USDG, or ARIVO tokens on Robinhood Chain.

POST /api/checkout/create-wallet

Polling for Confirmation

After initiating a crypto payment, bots should poll the status endpoint until the transaction is confirmed on-chain and the booking is finalized.