Look up file details by short codes.
Same flow in MCP: beecargo_file_info
Optional. You can send an API key in the Authorization header.
Pass one or more short codes, separated by commas.
# Get info for a single file
curl "https://api.beecargo.net/files/info?file_code=abc123"
# Get info for multiple files (comma-separated)
curl "https://api.beecargo.net/files/info?file_code=abc123,xyz789,def456"
# With API key authentication
curl "https://api.beecargo.net/files/info?file_code=abc123&key=YOUR_API_KEY"
# Or with Authorization header
curl -H "Authorization: Bearer YOUR_API_KEY" \
"https://api.beecargo.net/files/info?file_code=abc123,xyz789"Returns an array of file objects. Each has a status of 200 (found) or 404 (not found).
result has its own status (200 or 404)"active" can be downloadedscanStatus. Poll GET /files/share/{shortId} before machine download.unlockRequired is true, GET /files/download/{fileId} needs unlockCode or unlockToken (or call POST /downloads/unlock with handoffToken from /h/{token})