Skip to main content

get_ukvi_sponsors

Verify whether companies hold a UK Visa & Immigration (UKVI) sponsorship license. Checks against a database of 140,000+ registered sponsors. Credits: 0.125 per call (cached results cost 25%)

Parameters

ParameterTypeRequiredDescription
company_namesarrayYesCompany names to check

Request

curl -X POST https://mcp.debytes.io/mcp \
  -H "Authorization: Bearer deb_your_api_key_here" \
  -H "Content-Type: application/json" \
  -d '{
    "jsonrpc": "2.0",
    "id": 1,
    "method": "tools/call",
    "params": {
      "name": "get_ukvi_sponsors",
      "arguments": {
        "company_names": ["Google UK", "Acme Corp", "DeloitteLLP"]
      }
    }
  }'

Response

{
  "Google UK": true,
  "Acme Corp": false,
  "DeloitteLLP": true
}
A dictionary mapping each company name to its sponsorship status (true = registered sponsor, false = not found).

Notes

  • The UKVI sponsor database is maintained by the UK Home Office
  • Company name matching is fuzzy — minor variations are handled automatically
  • Results may be cached for faster response and lower credit cost