You can use the Alamofire library to make your requests, it is the most stable and built up swift 2.0, others such as AFNetworking are not so encouraged by still being made in Objective-C.
To add to your project manually you can view one of these videos: Alamofire - Youtube.
Or simply follow the tutorial in the github documentation.
A tip to be able to manage these libraries / components that you need to install in your project and Cocoapods , it is a dependency manager, such as php composer.
On the same site you will find an installation tutorial for it, and how to include the libraries.
Once you add Alamofire to your project, you just have to make a request like this:
let url = "http://sandbox.buscape.com/service/findProductList/564771466d477a4458664d3d/?keyword=samsung"
Alamofire.request(.GET, url)
.responseJSON {
response in
print(response.request) // original URL request
print(response.response) // URL response
print(response.data) // server data
print(response.result) // result of response serialization
if let JSON = response.result.value {
print("JSON: \(JSON)")
}