JavaScript
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}}; fetch('https://api.phaseo.app/v1/providers', options) .then(res => res.json()) .then(res => console.log(res)) .catch(err => console.error(err));
{ "ok": true, "limit": 50, "offset": 0, "total": 25, "providers": [ { "api_provider_id": "openai", "api_provider_name": "OpenAI", "description": "<string>", "link": "https://openai.com", "country_code": "US" } ] }
Browse the catalogue of API providers supported by the gateway.
Bearer token authentication
Limit the number of results
1 <= x <= 250
Offset for pagination
List of providers
true
50
0
25
Show child attributes
Was this page helpful?