mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-19 10:31:51 +00:00
24 lines
597 B
Plaintext
24 lines
597 B
Plaintext
---
|
|
title: "Retrieve Resource"
|
|
api: "GET /api/v1/resources/{id}"
|
|
description: "Fetch detailed information about a specific cloud resource."
|
|
---
|
|
|
|
Retrieve detailed information about a specific cloud resource including its configuration and associated findings.
|
|
|
|
## Path Parameters
|
|
|
|
- `id` (required) - UUID of the resource
|
|
|
|
## Example Request
|
|
|
|
```bash
|
|
curl -X GET "https://api.prowler.com/api/v1/resources/{id}" \
|
|
-H "Authorization: Bearer YOUR_API_KEY" \
|
|
-H "Content-Type: application/vnd.api+json"
|
|
```
|
|
|
|
## Response
|
|
|
|
Returns detailed resource information including metadata and configuration.
|