Insect Protein Standard Testing Environment ๊ณค์ถฉ ๋จ๋ฐฑ์ง ํ์ค ํ ์คํธ ํ๊ฒฝ
WIA-AGRI-025 defines a comprehensive framework for insect protein production, certification, and data exchange. This standard enables transparent tracking of nutrition, safety, sustainability, and traceability across the entire supply chain. WIA-AGRI-025๋ ๊ณค์ถฉ ๋จ๋ฐฑ์ง ์์ฐ, ์ธ์ฆ ๋ฐ ๋ฐ์ดํฐ ๊ตํ์ ์ํ ํฌ๊ด์ ์ธ ํ๋ ์์ํฌ๋ฅผ ์ ์ํฉ๋๋ค. ์ด ํ์ค์ ์ ์ฒด ๊ณต๊ธ๋ง์ ๊ฑธ์ณ ์์, ์์ ์ฑ, ์ง์๊ฐ๋ฅ์ฑ ๋ฐ ์ถ์ ์ฑ์ ํฌ๋ช ํ ์ถ์ ์ ๊ฐ๋ฅํ๊ฒ ํฉ๋๋ค.
Acheta domesticus, Gryllus bimaculatus - High protein content (60-70% dry weight) Acheta domesticus, Gryllus bimaculatus - ๋์ ๋จ๋ฐฑ์ง ํจ๋ (๊ฑด์กฐ ์ค๋ 60-70%)
Tenebrio molitor - Rich in omega-3 and omega-6 fatty acids Tenebrio molitor - ์ค๋ฉ๊ฐ-3 ๋ฐ ์ค๋ฉ๊ฐ-6 ์ง๋ฐฉ์ฐ ํ๋ถ
Hermetia illucens - Excellent for waste conversion and sustainable farming Hermetia illucens - ํ๊ธฐ๋ฌผ ์ ํ ๋ฐ ์ง์๊ฐ๋ฅํ ๋์ ์ ํ์
Locusta migratoria - Traditional protein source in many cultures Locusta migratoria - ๋ง์ ๋ฌธํ๊ถ์ ์ ํต์ ์ธ ๋จ๋ฐฑ์ง ๊ณต๊ธ์
Protein, amino acids, fats, vitamins, minerals, chitin content ๋จ๋ฐฑ์ง, ์๋ฏธ๋ ธ์ฐ, ์ง๋ฐฉ, ๋นํ๋ฏผ, ๋ฏธ๋ค๋, ํคํด ํจ๋
Pathogen screening, heavy metals, allergens, antibiotic residues ๋ณ์๊ท ์คํฌ๋ฆฌ๋, ์ค๊ธ์, ์๋ ๋ฅด๊ฒ, ํญ์์ ์๋ฅ๋ฌผ
Carbon footprint, water usage, feed conversion ratio, land use ํ์ ๋ฐฐ์ถ๋, ๋ฌผ ์ฌ์ฉ๋, ์ฌ๋ฃ ์ ํ์จ, ํ ์ง ์ฌ์ฉ
Batch tracking, farm origin, production date, processing methods ๋ฐฐ์น ์ถ์ , ๋์ฅ ์์ฐ์ง, ์์ฐ ๋ ์ง, ๊ฐ๊ณต ๋ฐฉ๋ฒ
Generated JSON will appear here...์์ฑ๋ JSON์ด ์ฌ๊ธฐ์ ํ์๋ฉ๋๋ค...
Retrieve a list of all registered insect protein products with pagination support. ํ์ด์ง๋ค์ด์ ์ง์๊ณผ ํจ๊ป ๋ฑ๋ก๋ ๋ชจ๋ ๊ณค์ถฉ ๋จ๋ฐฑ์ง ์ ํ ๋ชฉ๋ก์ ๊ฐ์ ธ์ต๋๋ค.
API response will appear here...API ์๋ต์ด ์ฌ๊ธฐ์ ํ์๋ฉ๋๋ค...
curl -X GET https://api.wia-agri.org/v1/products \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
const response = await fetch('https://api.wia-agri.org/v1/products', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
1,000 requests/hour, 10,000 requests/day ์๊ฐ๋น 1,000๊ฑด, ์ผ์ผ 10,000๊ฑด ์์ฒญ
10,000 requests/hour, 100,000 requests/day ์๊ฐ๋น 10,000๊ฑด, ์ผ์ผ 100,000๊ฑด ์์ฒญ
Webhook configuration result will appear here...์นํ ์ค์ ๊ฒฐ๊ณผ๊ฐ ์ฌ๊ธฐ์ ํ์๋ฉ๋๋ค...
import { WIAInsectProtein } from '@wia/agri-025';
const client = new WIAInsectProtein({
apiKey: 'your-api-key',
environment: 'production'
});
// Create a new insect product
const product = await client.products.create({
species: 'cricket',
scientificName: 'Acheta domesticus',
form: 'powder',
batchNumber: 'BATCH-2025-001',
nutrition: {
protein: { value: 65, unit: 'g/100g' },
fat: { value: 15, unit: 'g/100g' },
carbohydrates: { value: 8, unit: 'g/100g' }
},
safety: {
pathogenTested: true,
heavyMetalsTested: true,
allergenInfo: ['chitin']
}
});
console.log('Product created:', product.id);
from wia_agri_025 import WIAInsectProtein
client = WIAInsectProtein(
api_key='your-api-key',
environment='production'
)
# Query products with filters
products = client.products.list(
species='cricket',
form='powder',
min_protein=60,
certified=True,
limit=10
)
for product in products:
print(f"Product: {product.batch_number}")
print(f"Protein: {product.nutrition.protein.value}%")
print(f"Certification: {product.certification.id}")
print("---")
package main
import (
"context"
"fmt"
wia "github.com/wia-official/agri-025-go"
)
func main() {
client := wia.NewClient("your-api-key")
// Get nutrition profile
nutrition, err := client.Nutrition.Get(context.Background(), "PRODUCT-123")
if err != nil {
panic(err)
}
fmt.Printf("Protein: %.2f%%\n", nutrition.Protein.Value)
fmt.Printf("Amino Acids: %d types\n", len(nutrition.AminoAcids))
// Check sustainability metrics
sustainability, err := client.Sustainability.Get(context.Background(), "PRODUCT-123")
if err != nil {
panic(err)
}
fmt.Printf("Carbon Footprint: %.2f kg CO2e\n", sustainability.CarbonFootprint)
fmt.Printf("Water Usage: %.2f L\n", sustainability.WaterUsage)
}
Test results will appear here...ํ ์คํธ ๊ฒฐ๊ณผ๊ฐ ์ฌ๊ธฐ์ ํ์๋ฉ๋๋ค...