🚀 Coming Soon - Early Partner Program Open

Family Travel Expertise
for Your Platform

Embed BellyFly's medically-validated family travel expertise into your site—from pregnancy through toddlerhood. AI-powered recommendations, curated destinations, and healthcare provider directories.

5 Endpoints
99.9% Uptime SLA
3 Lines to Integrate
Quick Integration
<!-- 3-line integration -->
<link rel="stylesheet" href="widget.css">
<div id="bellyfly-widget"></div>
<script src="widget.js"></script>

Get Started in Minutes

Simple integration with your existing platform

// Get AI-powered destination recommendations
const response = await fetch('https://api.bellyfly.app/v1/partner/recommendations', {
  method: 'POST',
  headers: {
    'X-API-Key': 'your_api_key',
    'Content-Type': 'application/json'
  },
  body: JSON.stringify({
    destination: 'Paris',
    trimester: 2,
    childAge: null
  })
});

const data = await response.json();
console.log(data.recommendations);
// React Hook for BellyFly API
import { useState, useEffect } from 'react';

function useBellyFlyRecommendations(destination, trimester) {
  const [recommendations, setRecommendations] = useState(null);
  const [loading, setLoading] = useState(false);

  useEffect(() => {
    if (!destination) return;

    const fetchData = async () => {
      setLoading(true);
      const response = await fetch('/api/bellyfly-proxy', {
        method: 'POST',
        headers: { 'Content-Type': 'application/json' },
        body: JSON.stringify({ destination, trimester })
      });
      const data = await response.json();
      setRecommendations(data.recommendations);
      setLoading(false);
    };

    fetchData();
  }, [destination, trimester]);

  return { recommendations, loading };
}
# Get AI-powered destination recommendations
import requests

response = requests.post(
    'https://api.bellyfly.app/v1/partner/recommendations',
    headers={
        'X-API-Key': 'your_api_key',
        'Content-Type': 'application/json'
    },
    json={
        'destination': 'Paris',
        'trimester': 2,
        'childAge': None
    }
)

data = response.json()
print(data['recommendations'])
// Swift/iOS Integration
import Foundation

func getBellyFlyRecommendations(
    destination: String,
    trimester: Int?
) async throws -> [Recommendation] {
    let url = URL(string: "https://api.bellyfly.app/v1/partner/recommendations")!
    var request = URLRequest(url: url)
    request.httpMethod = "POST"
    request.setValue("your_api_key", forHTTPHeaderField: "X-API-Key")
    request.setValue("application/json", forHTTPHeaderField: "Content-Type")

    let body: [String: Any] = [
        "destination": destination,
        "trimester": trimester as Any,
        "childAge": NSNull()
    ]
    request.httpBody = try JSONSerialization.data(withJSONObject: body)

    let (data, _) = try await URLSession.shared.data(for: request)
    let response = try JSONDecoder().decode(Response.self, from: data)
    return response.recommendations
}
// Kotlin/Android Integration
import kotlinx.coroutines.*
import okhttp3.*
import com.google.gson.Gson

suspend fun getBellyFlyRecommendations(
    destination: String,
    trimester: Int?
): List<Recommendation> = withContext(Dispatchers.IO) {
    val client = OkHttpClient()
    val json = MediaType.parse("application/json")

    val requestBody = Gson().toJson(mapOf(
        "destination" to destination,
        "trimester" to trimester,
        "childAge" to null
    ))

    val request = Request.Builder()
        .url("https://api.bellyfly.app/v1/partner/recommendations")
        .addHeader("X-API-Key", "your_api_key")
        .post(RequestBody.create(json, requestBody))
        .build()

    val response = client.newCall(request).execute()
    val data = Gson().fromJson(response.body()!!.string(), Response::class.java)
    data.recommendations
}
# Get AI-powered destination recommendations
curl -X POST https://api.bellyfly.app/v1/partner/recommendations \
  -H "X-API-Key: your_api_key" \
  -H "Content-Type: application/json" \
  -d '{
    "destination": "Paris",
    "trimester": 2,
    "childAge": null
  }'
// Get AI-powered destination recommendations
using var client = new HttpClient();
client.DefaultRequestHeaders.Add("X-API-Key", "your_api_key");

var request = new {
    destination = "Paris",
    trimester = 2,
    childAge = (int?)null
};

var response = await client.PostAsJsonAsync(
    "https://api.bellyfly.app/v1/partner/recommendations",
    request
);

var data = await response.Content.ReadFromJsonAsync<RecommendationsResponse>();

Choose Your Integration Method

From simple widgets to fully customized experiences

Easy

Drop-In Widget

~15 minutes

Add 3 lines of code to your page. Uses our pre-built UI. Perfect for quick integration without backend work.

✓ No backend required ✓ Responsive design ✓ Customizable styling
<script src="widget.js"></script>
Advanced

White-Label Solution

~1-2 weeks

Fully customized experience. Your branding, custom endpoints, dedicated infrastructure. Enterprise only.

✓ Complete customization ✓ Dedicated support ✓ SLA guarantees
Custom implementation

Five Powerful Endpoints

Choose the endpoints that fit your platform's needs

Gear Recommendations AI

POST /v1/partner/gear/recommendations

AI-generated product-specific travel tips or general packing lists for destinations.

1 credit per call

Perfect for:

  • Baby product retailers
  • Gear rental companies
  • Travel agencies

Safety Net

GET /v1/partner/safety-net/providers

Location-based healthcare provider directory with hospitals, pediatricians, urgent care near any location.

1 credit per call

Perfect for:

  • Travel insurance companies
  • Airlines & airports
  • Expat services

Destination Discovery

GET /v1/partner/destinations/family-friendly

Curated list of family-friendly destinations with safety ratings and suitability scores.

1 credit per call

Perfect for:

  • Travel agencies
  • Parenting media sites
  • Corporate relocation

Trip Timeline AI

POST /v1/partner/timeline/generate

AI-generated week-by-week preparation plan with personalized tasks, reminders, and recommendations.

3 credits per call

Perfect for:

  • Travel insurance
  • Concierge services
  • Parenting apps

Airport Amenities

GET /v1/partner/airport/amenities

Family-friendly amenity data for airports: lactation rooms, family security lanes, play areas, changing facilities.

1 credit per call

Perfect for:

  • Flight search results (inline amenity display)
  • Flight comparison tools
  • Airport mobile apps
Powered by: Lactation room database (3,000+ venues) + family amenity feeds from Foursquare/Google Places

See It In Action

Explore live demos for different partner types

Limited Spots Available

Early Partner Program

Join our pilot program and test BellyFly API risk-free with 30 days of credits and dedicated support.

What You Get

30-Day Free Pilot

5,000 free credits across all 5 endpoints. Test in production. Extend if showing results.

Dedicated Integration Support

Direct Slack channel with our engineering team. 2-hour response time.

Lock in Launch Pricing

Keep current pricing for 12 months after pilot, even if prices increase.

Co-Marketing Opportunities

Joint case study, press release, featured on our partners page with logo.

Priority Feature Requests

Need a custom endpoint or specific data? Early partners get first priority.

Apply Now

Applications reviewed on a rolling basis.

Ideal for:

  • Airlines, OTAs, or travel booking platforms
  • Baby product retailers (e-commerce or brick-and-mortar)
  • Parenting apps or media sites (100K+ monthly visitors)
  • Travel insurance or concierge services

What we need from you:

  • Integrate API on production site/app
  • Share basic engagement metrics (anonymized)
  • 2-3 feedback calls during pilot
  • Testimonial if pilot drives results
1
Apply

15-min call to discuss use case

2
Integrate

1-3 days with our support

3
Measure

30 days of usage data (extendable)

Schedule Partner Call

🚀 Pilot program launching Q1 2026. Apply now to secure early partner benefits and lock in launch pricing.

Simple, Transparent Pricing

Credit-based pricing with pay-as-you-grow overage • No surprise bills

Developer

Free
  • 100 credits/month
  • All 5 endpoints
  • Rate limited (10/hour)
  • Community support
  • Testing & prototyping only

Perfect for demos and integration testing

Get API Key

Starter

$500 /month
  • 10,000 credits/month
  • All 5 endpoints
  • Email support
  • Production use
  • Basic analytics
  • Overage: $0.06/credit

~10K gear calls or ~3.3K timeline calls

Get Started

Enterprise

Starting at $5,000 /month
  • 50,000+ credits/month
  • White-label solutions
  • Dedicated account manager
  • 99.99% SLA
  • Custom endpoint development
  • Priority feature requests
  • Annual contracts available
  • Co-marketing opportunities

6-month pilot programs • Custom volume pricing

Schedule Enterprise Demo

Overage pricing: All paid tiers include $0.06 per credit beyond included amount. Track usage in real-time via your dashboard.
Pricing effective as of November 2025. Subject to change with 60 days notice. Existing customers will be notified of any pricing changes.

Calculate Your ROI

See the business impact of BellyFly API on your platform

Your Metrics

Estimated pregnant/parent segment
$
Industry benchmark for personalized content
Which endpoint will you use most?

Projected Impact

25,000 calls/mo 50,000 credits/mo
Monthly Incremental Revenue $67,500
Annual Impact $810,000
Family travelers reached 30,000/mo
Incremental engaged users 4,500/mo
Additional conversions 450/mo
BellyFly API Cost $2,500/mo
Return on Investment 2,600%
Payback Period < 1 day

*Projections based on industry benchmarks for personalized content. Actual results vary by implementation, audience, and integration quality.

See these numbers for your business?

Schedule ROI Review Call

Data You Can Trust

Safety and accuracy are paramount for family travel

Medical Advisory Oversight

Travel safety recommendations validated quarterly by Board-Certified OB-GYN advisors. Healthcare providers sourced from verified databases including Foursquare and Google Places APIs. Lactation room database includes locations at 3,000+ airports, malls, and venues.

Real-Time Data Updates

Amenity and lactation room locations refreshed daily from Foursquare and Google Places APIs. Healthcare provider data updated continuously. Last-updated timestamps included in all API responses.

AI Safety Guardrails

Multi-layer safety system prevents medical hallucinations. AI responses use validated data from CDC travel guidelines, ACOG recommendations, and TSA regulations. All pregnancy travel safety rules reviewed by Board-Certified OB-GYN advisors. No medical diagnoses—only informational travel guidance with clear escalation to healthcare providers when appropriate.

Liability Protection

BellyFly provides indemnification for travel recommendations generated through our API. Our medical advisory board validates safety protocols quarterly, and we maintain comprehensive liability insurance. Partners benefit from our medically-reviewed content without assuming compliance risk. See full terms in API documentation.

Early Partner Access: Access to the BellyFly Partner API is currently limited to select pilot partners to ensure maximum support and comprehensive liability coverage. We are establishing our medical advisory board and finalizing enterprise-grade data validation processes with each pilot partner.

Important: BellyFly provides informational guidance only. Our API is not a substitute for professional medical advice. All travel safety recommendations are validated by medical professionals and backed by our liability coverage. See our SLA and Terms of Service for complete details.

Ready to Partner with BellyFly?

Built for airlines, baby retailers, hotels, and parenting platforms. Schedule a demo to see how BellyFly can enhance your platform.