mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-19 02:21:52 +00:00
26 lines
681 B
Plaintext
26 lines
681 B
Plaintext
---
|
|
title: "List LLM Provider Configs"
|
|
api: "GET /api/v1/lighthouse/providers"
|
|
description: "Retrieve all LLM provider configurations for Lighthouse AI."
|
|
---
|
|
|
|
Retrieve all configured LLM provider configurations (OpenAI, etc.) for Lighthouse AI.
|
|
|
|
## Query Parameters
|
|
|
|
- `filter[provider_type]` - Filter by provider type: `openai`
|
|
- `filter[is_active]` - Filter by active status (boolean)
|
|
- `page[number]`, `page[size]` - Pagination
|
|
|
|
## Example Request
|
|
|
|
```bash
|
|
curl -X GET "https://api.prowler.com/api/v1/lighthouse/providers" \
|
|
-H "Authorization: Bearer YOUR_API_KEY" \
|
|
-H "Content-Type: application/vnd.api+json"
|
|
```
|
|
|
|
## Response
|
|
|
|
Returns list of LLM provider configurations.
|