How to get the Salesforce Instance Server URL from APEX Class?
This can be used to get the ID of current record.
ApexPages.CurrentPage().getParameters().get('id');
This can be used to get the current host in the url for e.g: “cs8.salesforce.com”.
ApexPages.CurrentPage().getHeaders().get('host');