{
  "x402Version": 2,
  "id": 5934,
  "slug": "5934",
  "resource": "https://api.stackgoai.com/api/v1/extract-contact",
  "description": "Extract structured public business contact information from any public business website. Returns company name, emails, phone numbers, social profiles, postal addresses, and contact pages as structured JSON. $0.01 per request via x402 on Base.",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x60ABF720A5FD7E1D33790a54719CfA71b8929ebA",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "10000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "body": {
            "url": "https://api.stackgoai.com/test-fixtures/contact-page"
          },
          "bodyType": "json",
          "method": "POST",
          "type": "http"
        },
        "output": {
          "example": {
            "addresses": [],
            "companyName": "Example Company",
            "contactPages": [],
            "domain": "api.stackgoai.com",
            "emails": [
              {
                "sourceUrl": "https://api.stackgoai.com/test-fixtures/contact-page",
                "value": "test-contact@stackgoai.com"
              }
            ],
            "inputUrl": "https://api.stackgoai.com/test-fixtures/contact-page",
            "meta": {
              "durationMs": 1200,
              "pagesFetched": 1
            },
            "pagesScanned": [
              "https://api.stackgoai.com/test-fixtures/contact-page"
            ],
            "phones": [
              {
                "sourceUrl": "https://api.stackgoai.com/test-fixtures/contact-page",
                "value": "+1 555 010 0000"
              }
            ],
            "requestId": "req_example",
            "socials": {
              "facebook": [],
              "instagram": [],
              "linkedin": [],
              "x": [],
              "youtube": []
            },
            "success": true
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "body": {
                "additionalProperties": false,
                "properties": {
                  "url": {
                    "description": "Public HTTP or HTTPS webpage URL",
                    "maxLength": 2048,
                    "type": "string"
                  }
                },
                "required": [
                  "url"
                ],
                "type": "object"
              },
              "bodyType": {
                "enum": [
                  "json",
                  "form-data",
                  "text"
                ],
                "type": "string"
              },
              "method": {
                "enum": [
                  "POST"
                ],
                "type": "string"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method",
              "bodyType",
              "body"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "properties": {
                  "addresses": {
                    "items": {
                      "properties": {
                        "addressCountry": {
                          "type": "string"
                        },
                        "addressLocality": {
                          "type": "string"
                        },
                        "addressRegion": {
                          "type": "string"
                        },
                        "postalCode": {
                          "type": "string"
                        },
                        "sourceUrl": {
                          "type": "string"
                        },
                        "streetAddress": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "sourceUrl"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "companyName": {
                    "type": [
                      "string",
                      "null"
                    ]
                  },
                  "contactPages": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "domain": {
                    "type": "string"
                  },
                  "emails": {
                    "items": {
                      "properties": {
                        "sourceUrl": {
                          "type": "string"
                        },
                        "value": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "value",
                        "sourceUrl"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "inputUrl": {
                    "type": "string"
                  },
                  "meta": {
                    "properties": {
                      "durationMs": {
                        "type": "number"
                      },
                      "pagesFetched": {
                        "type": "number"
                      }
                    },
                    "required": [
                      "pagesFetched",
                      "durationMs"
                    ],
                    "type": "object"
                  },
                  "pagesScanned": {
                    "items": {
                      "type": "string"
                    },
                    "type": "array"
                  },
                  "phones": {
                    "items": {
                      "properties": {
                        "sourceUrl": {
                          "type": "string"
                        },
                        "value": {
                          "type": "string"
                        }
                      },
                      "required": [
                        "value",
                        "sourceUrl"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  },
                  "requestId": {
                    "type": "string"
                  },
                  "socials": {
                    "properties": {
                      "facebook": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "instagram": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "linkedin": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "x": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      },
                      "youtube": {
                        "items": {
                          "type": "string"
                        },
                        "type": "array"
                      }
                    },
                    "required": [
                      "linkedin",
                      "facebook",
                      "instagram",
                      "x",
                      "youtube"
                    ],
                    "type": "object"
                  },
                  "success": {
                    "type": "boolean"
                  }
                },
                "required": [
                  "success",
                  "inputUrl",
                  "domain",
                  "companyName",
                  "emails",
                  "phones",
                  "socials",
                  "addresses",
                  "contactPages",
                  "pagesScanned",
                  "meta",
                  "requestId"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "api.stackgoai.com",
  "lastUpdated": "2026-09-17T03:46:47.665Z",
  "quality": {
    "calls30d": 7,
    "uniquePayers30d": 5,
    "lastCalledAt": "2026-09-17T03:46:47.464Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "api.stackgoai.com",
    "manifest_name": "api.stackgoai.com",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}