List Registered Providers
GET
/api/providers
const url = 'https://example.com/api/providers';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/providers \ --header 'Authorization: Bearer <token>'List all registered providers an agent can target.
Authorizations
Section titled “Authorizations”Responses
Section titled “Responses”Successful Response
Media typeapplication/json
Response List Registered Providers Api Providers Get
Array<object>
object
key
additional properties
any
Examplegenerated
[ {}]