Yes, using twurl and jq for example…
twurl "/1.1/users/show.json?screen_name=andypiper" | jq '. | {id: .id_str, name: .name, screen_name: .screen_name}'
{
"id": "786491",
"name": "Pipes",
"screen_name": "andypiper"
}
Posted a Gist of this for future reference.