{
  "x402Version": 2,
  "id": 3209,
  "slug": "3209",
  "resource": "https://api.qonoro.ai/v1/domain/intelligence",
  "description": "Given a domain name, returns tech stack (CMS, frameworks, analytics, CDN, email marketing, e-commerce), DNS records, WHOIS data, email provider, hosting provider, and domain age in a single structured JSON response.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x40B62aa49F4a929760fb2DD0Fcb0642f0AA872eb",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "30000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "domain": "stripe.com"
          },
          "bodyType": "json",
          "inputSchema": {
            "properties": {
              "buyer_region": {
                "description": "Optional privacy-safe buyer region for operational reporting.",
                "type": "string"
              },
              "domain": {
                "description": "Domain name to analyze (e.g. 'stripe.com').",
                "type": "string"
              }
            },
            "required": [
              "domain"
            ],
            "type": "object"
          },
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "cache_hit": false,
            "dns_records": {
              "a_records": [
                "104.16.132.229"
              ],
              "mx_records": [
                "aspmx.l.google.com"
              ],
              "ns_records": [
                "ns1.cloudflare.com",
                "ns2.cloudflare.com"
              ],
              "txt_records": [
                "v=spf1 include:_spf.google.com ~all"
              ]
            },
            "domain": "stripe.com",
            "domain_age_years": 24.3,
            "email_intelligence": {
              "email_provider": "Google Workspace",
              "mx_records": [
                "aspmx.l.google.com"
              ]
            },
            "expiry_date": "2026-04-27",
            "hosting": {
              "cdn_detected": true,
              "hosting_provider": "Cloudflare",
              "ip_address": "104.16.132.229",
              "nameservers": [
                "ns1.cloudflare.com",
                "ns2.cloudflare.com"
              ]
            },
            "quality_warnings": [],
            "registrar": "MarkMonitor Inc.",
            "registration_date": "2000-04-27",
            "request_id": "example-request-id",
            "response_time_ms": 1234.5,
            "tech_stack": {
              "analytics": [
                "Google Analytics",
                "Segment"
              ],
              "cdn": [
                "Cloudflare"
              ],
              "cms": [],
              "ecommerce": [],
              "email_marketing": [],
              "frameworks": [
                "React",
                "Next.js"
              ],
              "other": [
                "Stripe"
              ],
              "ui_frameworks": []
            }
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "properties": {
                  "buyer_region": {
                    "description": "Optional privacy-safe buyer region for operational reporting.",
                    "type": "string"
                  },
                  "domain": {
                    "description": "Domain name to analyze (e.g. 'stripe.com').",
                    "type": "string"
                  }
                },
                "required": [
                  "domain"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "inputSchema": {
                "type": "object"
              },
              "method": {
                "enum": [
                  "POST",
                  "PUT",
                  "PATCH"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "cache_hit": {
                    "type": "boolean"
                  },
                  "dns_records": {
                    "properties": {
                      "a_records": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "mx_records": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "ns_records": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "txt_records": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  },
                  "domain": {
                    "type": "string"
                  },
                  "domain_age_years": {
                    "nullable": true,
                    "type": "number"
                  },
                  "email_intelligence": {
                    "properties": {
                      "email_provider": {
                        "nullable": true,
                        "type": "string"
                      },
                      "mx_records": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  },
                  "expiry_date": {
                    "nullable": true,
                    "type": "string"
                  },
                  "hosting": {
                    "properties": {
                      "cdn_detected": {
                        "type": "boolean"
                      },
                      "hosting_provider": {
                        "nullable": true,
                        "type": "string"
                      },
                      "ip_address": {
                        "nullable": true,
                        "type": "string"
                      },
                      "nameservers": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  },
                  "quality_warnings": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "registrar": {
                    "nullable": true,
                    "type": "string"
                  },
                  "registration_date": {
                    "nullable": true,
                    "type": "string"
                  },
                  "request_id": {
                    "type": "string"
                  },
                  "response_time_ms": {
                    "nullable": true,
                    "type": "number"
                  },
                  "tech_stack": {
                    "properties": {
                      "analytics": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "cdn": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "cms": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "ecommerce": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "email_marketing": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "frameworks": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "other": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "ui_frameworks": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "type": "object"
                  }
                },
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.qonoro.ai",
  "lastUpdated": "2026-08-26T07:02:47.923Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-08-26T07:02:47.638Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.qonoro.ai",
    "manifest_name": "api.qonoro.ai",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}