Sign in

Authenticate user

documented

Validate user credentials (email and password) or API key to authorize API usage.

Authenticationno 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://app.bombbomb.com/app/api/api.php?method={{$api_method}}&query={{$query}}&page={{$page}}&limit={{$limit}}" \
  -X "GET" \
  -H "Accept: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-API-Key: {{BOMBBOMB_API_KEY}}" \

npx -y keychains@latest curl "https://app.bombbomb.com/app/api/api.php?method={{$api_method}}&query={{$query}}&page={{$page}}&limit={{$limit}}" \
  -X "POST" \
  -H "Accept: application/json" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {{OAUTH2_ACCESS_TOKEN}}" \
  -H "X-API-Key: {{BOMBBOMB_API_KEY}}" \
  -d '{"title": "{{$title}}", "description": "{{$description}}", "video_id": "{{$video_id}}"}'
Authenticate user · BombBomb · OpenIntegrations