2025-09-12 00:51:06 +00:00
[](https://swiftpackageindex.com/rock-n-code/amiibo-service)
[](https://swiftpackageindex.com/rock-n-code/amiibo-service)
2025-10-07 22:32:54 +00:00
# Amiibo Service
2025-09-09 18:34:29 +00:00
A library written entirely with [Swift ](https://www.swift.org ) that provides everything the developer needs to interacts with the [Amiibo API ](https://www.amiiboapi.com ) backend service.
## Installation
2025-10-07 22:32:54 +00:00
To use this library, then it is mandatory to add it as a dependency in the `Package.swift` file:
2025-09-09 18:34:29 +00:00
``` swift
let package = Package (
// n a m e , p l a t f o r m s , p r o d u c t s , e t c .
dependencies : [
2025-11-09 21:14:54 +01:00
. package ( url : " https://github.com/rock-n-code/amiibo-service " , from : " 1.3.0 " ) ,
2025-09-09 18:34:29 +00:00
// o t h e r d e p e n d e n c i e s
] ,
targets : [
. target (
name : " SomeTarget " ,
dependencies : [
. product ( name : " AmiiboService " , package : " amiibo-service " ) ,
]
)
// o t h e r t a r g e t s
]
)
```
It is also possible to use this library with your app in Xcode, then add it as a dependency in your Xcode project.
2025-10-07 22:32:54 +00:00
> important: Swift 5.10 or higher is required in order to build this library.
2025-09-09 18:34:29 +00:00
## Documentation
2025-09-09 18:58:18 +00:00
Please refer to the [online documentation ](https://rock-n-code.github.io/amiibo-service/documentation/amiiboservice/ ) for further informations about this library.