Send GET to /api/v1/repos/search?q={name} and filter results by exact name match. Output: {"ok": true/false, "data": [...]} with each match containing id, owner.login, name, clone_url.
The awk field parser was using $3 (owner column) instead of $4 (url column). Also fixed space trimming on extracted URL field.