Drupal - How to get a node by its url alias?
You want to investigate menu_get_object and drupal_lookup_path.
Something like this would do what you want:
$alias = "some/path/to/a/page";
$path = drupal_lookup_path("source", $alias);
$node = menu_get_object("node", 1, $path);