DogAPI is a Swift package that provides an interface for fetching info and images of different dog breeds using the Dog CEO API. This package supports retrieving breed lists, random images, and images for specific breeds and sub-breeds.
To use DogAPI in your Swift project, add the following dependency to your Package.swift
file:
dependencies: [
.package(url: "https://github.com/wilsondesimini/DogAPI.git", from: "1.1.0")
]
import DogAPI
let dogAPI = DogAPI()
do {
// fetch list of all breeds
let breeds = try await dogAPI.fetchAllBreeds()
print(breeds)
// fetch list of all sub-breeds of a breed
let subBreeds = try await dogAPI.fetchAllSubBreeds(breed: "retriever")
print(subBreeds)
} catch {
print("Error fetching breeds & sub-breeds: \(error)")
}
do {
// fetch a random image from all dogs collection
let imageURL = try await dogAPI.fetchRandomImage()
print(imageURL)
// fetch multiple random images from all dogs collection
let imageURLs = try await dogAPI.fetchRandomImages(count: 3)
print(imageURLs)
} catch {
print("Error fetching random images: \(error)")
}
do {
// fetch all images from a breed collection
let allBreedImages = try await dogAPI.fetchImages(breed: "retriever")
print(allBreedImages)
// fetch a random image from a breed collection
let breedImage = try await dogAPI.fetchRandomImage(breed: "retriever")
print(breedImage)
// fetch multiple random images from a breed collection
let breedImages = try await dogAPI.fetchRandomImages(breed: "retriever", count: 3)
print(breedImages)
} catch {
print("Error fetching breed images: \(error)")
}
do {
// fetch all images from a sub-breed collection
let allSubBreedImages = try await dogAPI.fetchImages(breed: "retriever", subBreed: "golden")
print(allSubBreedImages)
// fetch a random image from a sub-breed collection
let subBreedImage = try await dogAPI.fetchRandomImage(breed: "retriever", subBreed: "golden")
print(subBreedImage)
// fetch multiple random images from a sub-breed collection
let subBreedImages = try await dogAPI.fetchRandomImages(breed: "retriever", subBreed: "golden", count: 3)
print(subBreedImages)
} catch {
print("Error fetching sub-breed images: \(error)")
}
DogAPI throws errors conforming to DogAPIError
, which includes:
invalidURL
: When the request URL is malformedapiError
: When the API returns an error responseinvalidResponse
: When the response data does not match expected format
Contributions are welcome! Feel free to submit a pull request or open an issue.
This package is available under the MIT license.
DogAPI is powered by the Dog CEO API.