# Profile domain

Return visible detailed-profile detections and redactions; counts cover observed rows only.

- Platform: [BuiltWith](https://docs.upscrape.com/docs/platforms/builtwith)
- Capability ID: `builtwith.domain.profile`
- Cost: 1 credit per request
- Maximum runtime: 45 seconds
- Execute endpoint: `POST https://data.upscrape.com/execute`

## Request

Use the exact public capability ID in the shared execute envelope.

```bash
curl --request POST \
  --url https://data.upscrape.com/execute \
  --header "Authorization: Bearer YOUR_API_KEY" \
  --header "Content-Type: application/json" \
  --header "Prefer: wait=30" \
  --data '{
  "input": {
    "categories": [],
    "domain": "github.com",
    "includeRedacted": false,
    "status": "all"
  },
  "capability": "builtwith.domain.profile"
}'
```

## Input

| Field | Type | Required | Description |
| --- | --- | --- | --- |
| `categories` | `array<string>` | No | Categories supplied for this request. |
| `domain` | `string` | Yes | Hostname or HTTP(S) URL to profile |
| `includeRedacted` | `boolean` | No | Includeredacted supplied for this request. |
| `status` | `string` | No | Status supplied for this request. Allowed values: `current`, `removed`, `all`. |

### Example input

```json
{
  "categories": [],
  "domain": "github.com",
  "includeRedacted": false,
  "status": "all"
}
```

## Response

Successful output is returned in `results[0].data`. Raw platform output is intentionally open-ended and may evolve with the upstream source.

### Illustrative sample output

This redacted fixture is an example, not a fixed response schema.

```json
{
  "counts": {
    "current": 364,
    "redacted": 395,
    "removed": 52,
    "returned": 21,
    "total": 416
  },
  "domain": "github.com",
  "evidenceState": "partial_public_http_observed_not_independently_verified",
  "profileUrl": "https://builtwith.com/detailed/github.com",
  "retrievedAt": "2026-09-18T08:48:24Z",
  "technologies": [
    {
      "category": "Analytics and Tracking",
      "firstDetected": "2025-08",
      "lastDetected": "2026-09",
      "name": "Parse.ly",
      "redacted": false,
      "removedOn": null,
      "sourceUrl": "https://builtwith.com/detailed/github.com",
      "status": "current"
    },
    {
      "category": "Analytics and Tracking",
      "firstDetected": "2017-08",
      "lastDetected": "2026-09",
      "name": "Eloqua",
      "redacted": false,
      "removedOn": null,
      "sourceUrl": "https://builtwith.com/detailed/github.com",
      "status": "current"
    },
    {
      "category": "Analytics and Tracking",
      "firstDetected": "2025-07",
      "lastDetected": "2026-09",
      "name": "Salesforce",
      "redacted": false,
      "removedOn": null,
      "sourceUrl": "https://builtwith.com/detailed/github.com",
      "status": "current"
    }
  ]
}
```
### Illustrative output fields

Derived from the sample above for orientation only. These fields are not a fixed response schema.

| Path | Observed type | Example |
| --- | --- | --- |
| `counts` | `object` | 5 fields |
| `counts.current` | `integer` | 364 |
| `counts.redacted` | `integer` | 395 |
| `counts.removed` | `integer` | 52 |
| `counts.returned` | `integer` | 21 |
| `counts.total` | `integer` | 416 |
| `domain` | `string` | github.com |
| `evidenceState` | `string` | partial_public_http_observed_not_independently_verified |
| `profileUrl` | `string` | https://builtwith.com/detailed/github.com |
| `retrievedAt` | `string` | 2026-09-18T08:48:24Z |
| `technologies` | `array` | 3 items |
| `technologies` | `array` | 3 items |

## Execution behavior

A `200` response completed inline. A `202` response was queued; poll `GET /jobs/{id}` until the job reaches `completed` or `failed`. Use an `Idempotency-Key` when retrying must not create a duplicate logical job.

## Related documentation

- [Authentication](https://docs.upscrape.com/docs/api/authentication)
- [Jobs and results](https://docs.upscrape.com/docs/api/jobs)
- [Errors and retries](https://docs.upscrape.com/docs/api/errors)
- [Idempotency](https://docs.upscrape.com/docs/api/idempotency)
