Fee amount
API version
Select a version to change the base URI
in syntax and code examples. Learn about versions:
in syntax and code examples. Learn about versions
Represents a single fee amount.
URI
/api/v9/fees/ID/amounts/TerritoryNameGET Get a fee amount
Return information about a fee amount specified for a specific territory.
As a territory identifier, use an ISO 3166-1 alpha-2 country code or 001 to retrieve the global (worldwide) fee amount.
Syntax
GET /api/v9/fees/123/amounts/001
Host: apply.example.edu
Authorization: DREAM apikey="..."Example request
Request
curl
curl \
-X GET \
-H "Authorization: DREAM apikey=\"YOUR-API-KEY\"" \
"https://apply.example.edu/api/v9/fees/123/amounts/001"Response headers
| Header | Value | Description |
|---|---|---|
Content-Type | application/json | Media type of the resource |
Response codes
| Response code | Description |
|---|---|
200 OK | The amount data was successfully returned |
404 Not Found | The fee was not found |
Example response
Response
{
"qualifier": null,
"currency": "EUR",
"amount": "1100.00",
"info": "",
"basis": "Year"
}