Sign in

List companies

documented

Retrieve a list of companies in Teamgate.

GET /v4/companiesCompaniesno implementation yet0 runs
No implementation yet. Run it to have the agent write one, or open a pull request with your own.

Seed example (keychains curl)

npx -y keychains@latest curl "https://api.teamgate.com/v4/companies?query={{$query}}&page={{$page}}&limit={{$limit}}" \
  -X GET \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "X-App-Key: {{TEAMGATE_API_KEY}}" \
  -H "X-Auth-Token: {{TEAMGATE_SECRET}}" \
  
# Source: Teamgate API base URL and authentication headers are based on official API docs (base URL: https://api.teamgate.com/v4, headers: X-App-Key and X-Auth-Token). See https://developers.teamgate.com for the API reference and examples (e.g., https://api.teamgate.com/v4/users).