It is called the origin.
More generally speaking, here are the different parts of a URL, as per Location. (So at least according to how Javascript calls it)
protocol://username:password@hostname:port/pathname?search#hash
-----------------------------href------------------------------
-----host----
----------- origin -------------
protocol– protocol scheme of the URL, including the final ‘:’hostname– domain nameport– port numberpathname–/pathnamesearch–?parametershash–#fragment_identifierusername– username specified before the domain namepassword– password specified before the domain namehref– the entire URLorigin–protocol://hostname:porthost–hostname:port
Note that the exact naming of each part may be different in different standards. For example, ‘host’ in RFC 6454 section 4. means ‘hostname’ in the above diagram.