🐔 PoultryAI
by animstok.com
🧮 Yield Calculator
📋 What Data Do I Need?
📊 My Results
🌾 Poultry Yield Calculator
Enter your flock details to get egg yield, meat weight, revenue & ROI estimates
STEP 01
🐔 Flock Info
STEP 02
🌾 Feed & Care
STEP 03
💰 Market Prices
STEP 04
📊 Get Results
🐔 Flock Information
ℹ️ Fields marked * are required. More data = more accurate yield prediction.
Total birds in your flock
Industry avg: 2–5% for layers, 3–6% for broilers
🌾 Feed & Environmental Care
Current market rate in your area
Layers: 100–120g | Broilers: 80–140g
🏠 Other Operational Costs (Monthly, ₹)
💰 Market Selling Prices
🏪 Enter the prices you sell at in your local market. These directly affect revenue calculations.
Farmgate price (not retail)
Initial investment per bird
✅ Calculation complete! View your detailed results in the Results tab.
📋 What Data Do You Need?
A simple guide to all the inputs needed to calculate your yield, profit & ROI accurately
R
Required (minimum for calculation)O
Optional (improves accuracy)🐔
Flock Information
R
Bird type & breedBroiler / Layer / Turkey / Desi
R
Number of birdsTotal count in your flock/shed
R
Bird ageIn days, weeks, or months
O
Mortality rate %Your historical or expected loss rate
O
Housing typeOpen shed, cage, free range etc.
O
Lighting programHours of light per day – affects egg yield
🌾
Feed & Care Inputs
R
Feed cost per kg (₹)Current price you pay for feed
R
Feed typeCommercial pellet, mash, or organic
O
Daily intake per bird (grams)Weigh a batch to measure; or use breed standard
O
Vaccination programFull / partial / none – affects health factor
O
Monthly labour cost (₹)Wages for all farm workers
O
Electricity cost (₹/month)Lighting, fans, heaters
💰
Market & Selling Data
R
Egg selling price (₹/egg)Your farmgate or wholesale rate
R
Live bird price (₹/kg)Current market rate for broilers/turkeys
R
Day-old chick cost (₹)What you paid per chick
O
Dressed weight price (₹/kg)If selling processed birds
O
Forecast period1 month, quarter, 6 months or full year
🌡️
What the AI Calculates For You
✓
Total egg productionDaily, monthly and forecast period
✓
Meat yield (live & dressed)Based on breed growth curves
✓
Total revenue estimateEggs + meat × your market prices
✓
Total cost & profit/lossFeed + chick + labour + overheads
✓
ROI & payback periodReturn on investment calculation
✓
Feed cost vs yield ratio (FCR)Efficiency benchmark vs industry
📱 Quick Reference: Typical Values by Bird Type
| Bird | Lay Rate | FCR | Feed/day | Slaughter Age | Live Weight | Mortality |
|---|---|---|---|---|---|---|
| 🥚 Layer (Hy-Line) | 90–96% | 2.0–2.2 | 110–120g | 72–80 weeks | — | 5–8%/yr |
| 🍗 Broiler (Ross 308) | — | 1.75–1.85 | 80–140g | 35–42 days | 2.2–2.5 kg | 3–5% |
| 🦃 Turkey (BUT-6) | — | 2.5–2.8 | 200–350g | 14–18 weeks | 8–12 kg | 2–4% |
| 🐓 Desi / Country | 50–65% | 3.5–4.5 | 60–90g | 16–20 weeks | 1.2–1.8 kg | 5–10% |
📊
No results yet
Complete the Yield Calculator to see your forecast here
⚙️ Embed PoultryAI on animstok.com
3 ways to integrate — choose what fits your website setup
🖼️
iFrame Embed
Easiest — paste one line of code into any page
⚡
JavaScript Widget
Load as a floating widget or inline component
🔌
REST API
Send farm data, get yield JSON back — full control
🖼️ iFrame — Paste into your animstok.com page HTML
Works with WordPress, Wix, Webflow, plain HTML — anywhere you can add HTML.
<!-- PoultryAI Widget by animstok.com -->
<iframe
src="https://poultryai.animstok.com/widget"
width="100%"
height="700px"
style="border:none; border-radius:12px; box-shadow:0 4px 20px rgba(0,0,0,0.1);"
allow="clipboard-write"
loading="lazy"
></iframe>
01
Copy the code above
Click "Copy" and paste it anywhere in your animstok.com page — sidebar, product page, or a dedicated tool page.
02
Add query params for branding
Append
?brand=animstok&color=2d7a3a&lang=hi to pre-set language and brand color.⚡ JavaScript Widget — Add to your site's <head>
/* 1. Add to <head> of your animstok.com website */
<script src="https://cdn.animstok.com/poultryai/widget.js"></script>
/* 2. Add this div where you want the calculator to appear */
<div id="poultryai-widget"
data-lang="hi"
data-theme="light"
data-brand="animstok"
></div>
/* 3. Initialize with your API key */
<script>
PoultryAI.init({
apiKey: 'YOUR_ANIMSTOK_API_KEY',
lang: 'hi', // hi | te | ta | mr | en
currency: 'INR',
defaultBirdType: 'layer',
onResult: function(data) {
console.log('Yield result:', data);
// data.eggs, data.revenue, data.roi etc.
}
});
</script>
🔌 REST API — Send farm data, receive yield JSON
Full programmatic control. Integrate into your animstok.com backend, mobile app, or custom dashboard.
📤 Request — POST /api/v1/yield-calculate
fetch('https://api.animstok.com/poultryai/v1/yield-calculate', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'YOUR_ANIMSTOK_API_KEY'
},
body: JSON.stringify({
// ── REQUIRED ──
bird_type: 'layer', // layer | broiler | turkey | desi
breed: 'hyline_w36',
num_birds: 5000,
bird_age_weeks: 20,
feed_cost_per_kg: 28,
// ── YIELD OUTPUTS REQUESTED ──
outputs: ['eggs', 'revenue', 'roi', 'feed_cost'],
forecast_days: 90,
// ── OPTIONAL ──
mortality_rate: 0.03,
daily_feed_grams: 115,
egg_price_per_unit: 6.50,
labour_cost_monthly: 12000,
electricity_monthly: 5000,
chick_cost_each: 40,
language: 'hi' // en | hi | te | ta | mr
})
});
📥 Response — 200 OK
{
"status": "success",
"inputs_used": { /* echo of your inputs */ },
"yield": {
"eggs_total": 405000, // total eggs in forecast period
"eggs_per_day": 4500,
"lay_rate_pct": 90.0,
"meat_kg_live": null, // for broilers/turkeys
"meat_kg_dressed": null
},
"financials": {
"total_revenue_inr": 2632500,
"total_feed_cost_inr": 434700,
"total_other_costs_inr": 510000,
"chick_cost_inr": 200000,
"total_cost_inr": 1144700,
"profit_inr": 1487800,
"roi_pct": 129.97,
"payback_days": 39
},
"efficiency": {
"fcr": 2.05,
"feed_cost_per_egg_inr": 1.07,
"profit_per_bird_inr": 297.56
},
"language": "hi",
"generated_at": "2026-03-13T10:42:00Z"
}
🔑
Get Your API Key
Register on animstok.com → Dashboard → API Keys → Generate New Key. Free tier: 500 calls/month. Paid plans available.
🌐
Multi-language Response
Pass
"language":"hi" to receive field labels and recommendations in Hindi, Telugu, Tamil, or Marathi.💡 Selling PoultryAI as a Service on animstok.com
| Plan | Features | Target Customer | Suggested Price |
|---|---|---|---|
| Free | Basic yield calc, 1 flock, EN only | Small backyard farmers | ₹0 / month |
| Starter | All 5 languages, 3 flocks, PDF reports | Small commercial farms | ₹499 / month |
| Pro | Unlimited flocks, API access, AI assistant, historical data | Mid-size integrators | ₹1,999 / month |
| Enterprise | White-label, custom integrations, dedicated support | Large poultry companies | ₹9,999+ / month |











