You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### [Fluctuation data endpoint](https://fixer.io/documentation#timeseries)
81
93
82
94
```php
83
-
$fixerio->fluctuation(
95
+
$fluctuationData = $fixerio->fluctuation(
84
96
[
85
97
'start_date' => '2019-01-01',
86
98
'end_date' => '2019-01-05',
87
99
'base' => 'USD', // optional
88
100
'symbols' => 'INR', //optional
89
101
]
90
102
);
103
+
104
+
// Display the change/fluctuation amount of INR between the given date range
105
+
echo $fluctuationData['rates']['INR']['change'];
91
106
```
92
107
93
108
The response for all the above calls will be a JSON object. Please refer fixer.io's [documentation](https://fixer.io/documentation) for further details about various endpoints, request parameters and response objects.
109
+
110
+
## License
111
+
112
+
This package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).
0 commit comments