GET /api/poultry/prices?memberStateCodes=PT,ES&beginDate=22/01/2019&endDate=22/04/2020 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Parameter | Optional | Description |
---|---|---|
memberStateCodes |
true |
The optional codes of the EU Member States. |
products |
true |
The optional poultry product name(s) must be Broiler, Breast and Legs. |
priceTypes |
true |
The optional poultry price type(s) must be 'Selling price' (default if nothing specified), 'Retail buying prices', 'Non-retail buying prices' or 'All'. |
years |
true |
The optional year(s) to search for poultry. |
months |
true |
The optional month(s) to search for poultry. |
weeks |
true |
The optional week(s) of a year to search for poultry. The first week of January is number 1. |
beginDate |
true |
The optional date interval start to search for poultry prices. |
endDate |
true |
The optional date interval end to search for poultry prices. |
GET /api/poultry/prices?memberStateCodes=PT,ES&beginDate=22/01/2019&endDate=22/04/2020 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with poultry prices |
|
|
The code of the EU Member State. |
|
|
The name of the EU Member State. |
|
|
The valid start date period of the poultry price. |
|
|
The valid end date period of the poultry price. |
|
|
The week number of the year. |
|
|
The product of the poultry. |
|
|
The price type of the poultry. |
|
|
The unit of the poultry. |
|
|
The price of the poultry. |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 254
[ {
"memberStateCode" : "PT",
"memberStateName" : "Portugal",
"beginDate" : "23/03/2020",
"endDate" : "30/04/2020",
"weekNumber" : 5,
"price" : "€180.17",
"unit" : "100 KG",
"productName" : "Broiler",
"priceType" : "Selling price"
} ]
GET /api/poultry/priceTypes HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with all poultry price types |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 71
[ "Non-retail buying prices", "Retail buying prices", "Selling price" ]
Parameter | Optional | Description |
---|---|---|
memberStateCodes |
true |
The optional codes of the EU Member States. |
products |
true |
The optional poultry product name(s) must be Broiler and Breast. |
priceTypes |
true |
The optional poultry price type(s) to search for poultry monthly prices. |
years |
true |
The optional year(s) to search for poultry monthly prices. |
months |
true |
The optional month(s) to search for poultry monthly prices. |
beginDate |
true |
The optional date interval start to search for poultry monthly prices. |
endDate |
true |
The optional date interval end to search for poultry monthly prices. |
GET /api/poultry/prices/month?memberStateCodes=PT,ES&beginDate=01/01/2019&endDate=30/04/2020 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with poultry prices |
|
|
The code of the EU Member State. |
|
|
The name of the EU Member State. |
|
|
The valid start date period of the poultry monthly price. |
|
|
The valid end date period of the poultry monthly price. |
|
|
The marketing year of the poultry monthly price. |
|
|
The month number of the poultry monthly price. |
|
|
The month of the poultry monthly price. |
|
|
The product of the poultry monthly price. |
|
|
The price type of the poultry monthly price. |
|
|
The unit of the poultry monthly price. |
|
|
The price of the poultry monthly price. |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 331
[ {
"memberStateCode" : "PT",
"memberStateName" : "Portugal",
"beginDate" : "01/04/2020",
"endDate" : "30/04/2020",
"price" : "€138.03 ",
"unit" : "national currency/100kg",
"marketingYear" : 2020,
"monthNumber" : 4,
"month" : "April",
"productName" : "Whole broiler (65%)",
"priceType" : "Selling price"
} ]
GET /api/poultry/prices/month/priceTypes HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with all poultry monthly price types |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 71
[ "Non-retail buying prices", "Retail buying prices", "Selling price" ]
Parameter | Optional | Description |
---|---|---|
memberStateCodes |
true |
The optional codes of the EU Member States. |
farmingMethods |
true |
The optional egg(s) farming method(s). For more details check the REST API : /api/poultry/egg/farmingMethods |
marketingYears |
true |
The optional marketing year(s) to search for egg price. |
weekNumbers |
true |
The optional week number(s) to search for egg price. |
months |
true |
The optional month(s) to search for egg. |
beginDate |
true |
The optional date interval start to search for egg price. |
endDate |
true |
The optional date interval end to search for egg price. |
GET /api/poultry/egg/prices?memberStateCodes=PT,ES&beginDate=22/01/2019&endDate=22/04/2020&farmingMethods=Barn,Cage HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with egg(s) prices |
|
|
The code of the EU Member State. |
|
|
The name of the EU Member State. |
|
|
The valid start date period of the egg price. |
|
|
The valid end date period of the egg price. |
|
|
The marketing year corresponding to the egg price. |
|
|
The week number corresponding to the egg price. |
|
|
The farming method of the egg. |
|
|
The unit of the egg. |
|
|
The price of the egg. |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 249
[ {
"beginDate" : "04/10/2021",
"endDate" : "11/10/2021",
"price" : "€168.03",
"unit" : "€/100Kg",
"farmingMethod" : "Barn",
"marketingYear" : 2021,
"weekNumber" : 40,
"memberStateCode" : "DK",
"memberStateName" : "Denmark"
} ]
GET /api/poultry/egg/farmingMethods HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Path | Type | Description |
---|---|---|
|
|
Array with all eggs farming methods |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 43
[ "Barn", "Cage", "Free range", "Organic" ]
Parameter | Optional | Description |
---|---|---|
memberStateCodes |
true |
The optional codes of the EU Member States to search for poultry production. |
animals |
true |
The optional poultry animals to search for poultry production. Multiple animals must be comma-separated. For more details check the REST API : /api/poultry/production/animals |
years |
true |
The optional year(s) to search for poultry production. |
months |
true |
The optional month(s) number to search for poultry production. |
GET /api/poultry/production?memberStateCodes=AT&years=2021 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Host: localhost:8080
Path | Type | Description |
---|---|---|
|
|
Array with poultry production |
|
|
The code of the EU Member State. |
|
|
The name of the EU Member State. |
|
|
The animal of the poultry production. |
|
|
The year corresponding to the poultry production volume. |
|
|
The month of the year. |
|
|
The number of production volume in 1000 Tonnes. |
|
|
The number of production volume in 1000 Heads. |
|
|
The number of production volume in Kg/head. |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 203
[ {
"memberStateCode" : "AT",
"memberStateName" : "Austria",
"year" : 2021,
"month" : "December",
"animal" : "Chicken",
"tonnes" : 11.51,
"heads" : 9022.5,
"kgPerHead" : 1.28
} ]
GET /api/poultry/production/animals HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json
Host: localhost:8080
Path | Type | Description |
---|---|---|
|
|
Array with poultry production animals |
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: 114
[ "Boiling hen", "Broiler", "Chicken", "Duck", "Goose", "Guinea fowl", "Other poultry", "Poultry meat", "Turkey" ]