CLOUD-IP // v2026.08
UPDATED 2026-08-26 PROVIDERS 64 LIVE
// GPTBOT / SQL

GPTBot · SQL

SQL inserts to load GPTBot CIDRs into a database table. 260 CIDRs, refreshed daily.

// gptbot_ips.sql

DOWNLOAD ↓  · 
-- SQL script to create table `gptbot_ips` and insert IP addresses

CREATE TABLE IF NOT EXISTS `gptbot_ips` (
  `ip_address` VARCHAR(45) NOT NULL,
  `ip_type` VARCHAR(10) NOT NULL,
  PRIMARY KEY (`ip_address`)
);

INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.151.71.176/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.151.119.48/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.189.118.208/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.189.119.48/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.22.112/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.64.0/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.64.16/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.64.48/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.64.64/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.197.115.112/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.201.232.64/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.205.128.176/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.218.24.64/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.226.200.16/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.226.226.32/28', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.227.36.0/25', 'IPv4');
INSERT INTO `gptbot_ips` (`ip_address`, `ip_type`) VALUES ('4.227.36.0/25', 'IPv4');
… (243 more lines)