> ## Documentation Index
> Fetch the complete documentation index at: https://api.docs.flare.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Service

The `service` type represents an internet-exposed service, such as a web server listening on a public IP address.

Each record corresponds to a single host and port combination and may include:

* Network details (IP address, port, hostname, ASN, country, and the organization managing the IP).
* Protocol and product (for example `https` served by Apache httpd), plus a URL and raw response content when available.
* CVE identifiers of vulnerabilities the service may be affected by.

```json Service theme={null}
{
    "event_type": "service",
    "data": {
        "url": "https://www.example.com",
        "asn": "AS64496",
        "content": "<!DOCTYPE html>\n<html>\n<head>\n    <title>Example Domain</title>\n</head>\n<body>\n    <h1>Example Domain</h1>\n</body>\n</html>",
        "service": "https",
        "product": "Apache httpd",
        "port": 443,
        "ip_address": "192.0.2.10",
        "organization": "Example Hosting Inc.",
        "hostname": "www.example.com",
        "country_code": "US",
        "vulnerabilities": [
            "CVE-2021-41773"
        ]
    },
    "metadata": {
        "estimated_created_at": "2025-01-01T00:00:00",
        "flare_url": "https://app.flare.io/#/uid",
        "matched_at": null,
        "severity": "info",
        "uid": "index/source/id"
    }
}
```
