Embed Global Procurement Into Any System
The AxBids REST API gives developers programmatic access to RFQ management, multi-round bidding, supplier data, landed cost calculations, and real-time freight rates. Build procurement automation directly into your ERP, WMS, or custom workflows.
// Create an RFQ and invite suppliers in one call const response = await fetch('https://api.axbids.com/v1/rfqs', { method: 'POST', headers: { 'Authorization': `Bearer ${API_KEY}`, 'Content-Type': 'application/json' }, body: JSON.stringify({ title: 'Steel Coil 3.0mm — Q3 2025', material_number: 'MAT-10293', quantity: 200, unit: 'MT', delivery_address: 'Houston, TX 77002', deadline: '2025-08-01', rounds: 3, bid_type: 'sealed', supplier_ids: ['sup_4821', 'sup_3307'], auto_landed_cost: true }) }); const { rfq_id, supplier_portal_url } = await response.json(); // rfq_id: "rfq_8a4f2c" // supplier_portal_url: "https://bid.yourcompany.com/rfq_8a4f2c"
Everything Available Over the API
RFQ Management
Create, update, publish, and close RFQs programmatically. Set multi-round configurations, supplier lists, deadlines, and bid form requirements via API.
Bid Collection & Analysis
Retrieve all bids for an RFQ in normalized format. Get AI scores, landed cost calculations, and rankings without logging into the UI.
Landed Cost Engine
Pass a supplier quote + origin country + destination ZIP + HS code and receive back a full landed cost breakdown in under 2 seconds.
Real-Time Freight Rates
Query current ocean, air, and rail freight rates for any lane. Returns carrier rates, transit times, and surcharges in structured JSON.
Supplier Management
CRUD operations on your approved vendor list. Sync supplier records from your ERP, update contact info, and manage certifications programmatically.
Webhooks & Events
Subscribe to procurement events: bid submitted, round complete, RFQ deadline approaching, PO awarded. Push notifications to any endpoint.
ERP Push / Pull
Trigger bi-directional ERP sync via API. Push awarded POs, pull material master data, and sync vendor records on your own schedule.
Analytics & Reports
Export savings reports, supplier scorecards, and bid histories in JSON or CSV. Feed procurement analytics into your own BI tools.
Core Endpoints
Base URL: https://api.axbids.com/v1 · All requests require Bearer token.
RFQs
Bids
Landed Cost
Suppliers
Webhooks
Get Running in Minutes
Calculate Landed Cost
import requests result = requests.post( 'https://api.axbids.com/v1/landed-cost/calculate', headers={'Authorization': f'Bearer {API_KEY}'}, json={ 'unit_price': 794.00, 'currency': 'USD', 'origin_country': 'CN', 'destination_zip': '77002', # Houston TX 'hs_code': '7209180010', 'weight_kg': 1000, 'transport_mode': 'ocean' } ) data = result.json() print(data['landed_cost_per_unit']) # 847.00 print(data['tariff_amount']) # 198.50 print(data['freight_amount']) # 16.80
Webhook — Bid Submitted Event
{
"event": "bid.submitted",
"rfq_id": "rfq_8a4f2c",
"round": 2,
"bid": {
"id": "bid_3cc1f",
"supplier_id": "sup_4821",
"supplier_name": "Baosteel Intl.",
"unit_price": 794.00,
"currency": "USD",
"landed_cost": 847.00,
"ai_score": 91,
"ai_rank": 1,
"submitted_at": "2025-07-14T14:32:11Z"
},
"current_best_landed_cost": 847.00,
"total_bids_received": 7
}
Official Client Libraries
Official SDKs handle authentication, rate limiting, retries, and response parsing so you can focus on your integration logic.
Full OpenAPI 3.0 / Swagger specification available for auto-generating clients in any language. Interactive documentation available after account creation.
npm install axbidspip install axbidscomposer require axbids/sdkgem install axbidsNuGet AxBids.SDKMaven CentralAPI Access & Limits
| Plan | Req/Min | Webhooks | Sandbox |
|---|---|---|---|
| Free | 60 | 3 | ✓ |
| Enterprise | 1,000+ | Unlimited | ✓ |
A full sandbox environment with test suppliers, simulated bids, and mock freight data is available on all plans — including Free.
Get Your API Key FreeNeed Integration Help?
Our US-based engineering team in Houston, TX provides dedicated API integration support for Enterprise customers. Free plan developers can access community docs and email support.