No demo calls. No onboarding. Just sign up and start managing.
Sign up with email or Google. Your tenant is provisioned instantly with row-level security isolation.
Upload your existing spreadsheet via CSV, or start fresh by adding subnets and folders from scratch.
Every change logged. Every conflict caught. Your network data is finally a source of truth, not anxiety.
The tools you actually need to manage a network, without the bloat of enterprise IPAM solutions that take months to deploy.
Most IPAM tools treat their API as an afterthought. Ours is a first-class citizen. Every action in the UI is an API call. Automate provisioning, sync with your CMDB, or build internal tools on top of your IP data.
# Find the next available IP in a subnet
curl https://api.ipcraft.io/api/v1/subnets/$SUBNET_ID/first-free \
-H "Authorization: Bearer ipc_your_key"
# Create a subnet
curl -X POST https://api.ipcraft.io/api/v1/subnets \
-H "Authorization: Bearer ipc_your_key" \
-H "Content-Type: application/json" \
-H "X-Requested-With: XMLHttpRequest" \
-d '{
"network": "10.0.10.0/24",
"description": "Production DB servers",
"folder_id": "'$FOLDER_ID'"
}'
# Search across everything
curl "https://api.ipcraft.io/api/v1/search?q=prod" \
-H "Authorization: Bearer ipc_your_key"
Every change in your network fires an event. Subscribe to the ones you care about and IPCraft sends a signed HTTP POST to your endpoint within seconds.
// POST to your endpoint when a subnet is created
{
"event": "subnet.created",
"resource_type": "subnet",
"resource_id": "a1b2c3d4-e5f6-...",
"timestamp": "2026-03-26T14:30:00Z",
"data": {
"label": "10.0.5.0/24",
"name": "Staging servers"
}
}
// Headers included with every delivery:
// X-Webhook-Signature: t=1711046400,v1=5257a8...
// Content-Type: application/json
Start free with everything you need. Scale when you're ready.
Join teams who stopped guessing and started managing. Free forever for small networks.