Fee amount

Represents a single fee amount.

URI
/api/v9/fees/ID/amounts/TerritoryName

GET 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

HeaderValueDescription
Content-Typeapplication/jsonMedia type of the resource

Response codes

Response codeDescription
200 OKThe amount data was successfully returned
404 Not FoundThe fee was not found

Example response

Response
{
    "qualifier": null,
    "currency": "EUR",
    "amount": "1100.00",
    "info": "",
    "basis": "Year"
}