Sheep And Goat Meat

Weekly prices for heavy and light lamb per Member State and weighted averages over the Union. More information can be found on the Info tab of the portal’s sheep and goat meat prices app and sheep and goat meat production app.
Parameter Optional Description

memberStateCodes

true

The optional codes of the EU Member States.

productCodes

true

The optional sheep and goat product code(s) are EU_L and EU_H they must be comma-separated.

marketCodes

true

The optional sheep and goat market name(s) are EU member state code(s) and they must be comma-separated. For more details check REST API : /api/sheepAndGoat/markets

marketingYears

true

The optional marketing year(s) to search for sheep and goat.

months

true

The optional month(s) to search for sheep and goat.

weeks

true

The optional week(s) of a year to search for sheep and goat. The first week of January is number 1.

beginDate

true

The optional date interval start to search for sheep and goat prices.

endDate

true

The optional date interval end to search for sheep and goat prices.

Example of a request

GET /api/sheepAndGoat/prices?memberStateCodes=PT&productCodes=EU_H&beginDate=29/12/2014&endDate=04/01/2015 HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat prices

[].memberStateCode

String

The code of the EU Member State.

[].memberStateName

String

The name of the EU Member State.

[].beginDate

String

The valid start date period of the sheep and goat price.

[].endDate

String

The valid end date period of the sheep and goat price.

[].weekNumber

Number

The week number of the year.

[].marketingYear

Number

The marketing year of the sheep and goat price.

[].category

String

The category of the sheep and goat.

[].marketName

String

The market name of the sheep and goat.

[].unit

String

The unit of the sheep and goat.

[].price

String

The price of the sheep and goat.

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ {
  "memberStateCode" : "PT",
  "memberStateName" : "Portugal",
  "beginDate" : "29/12/2014",
  "endDate" : "04/01/2015",
  "weekNumber" : 1,
  "price" : "€524.00",
  "unit" : "100CARC",
  "category" : "Heavy Lamb",
  "marketName" : "PT",
  "marketingYear" : 2015
} ]

Sheep and goat meat categories

Example of a request

GET /api/sheepAndGoat/categories HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat categories

[].category

String

The category of the sheep and goat.

[].productCode

String

The code of the sheep and goat product.

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ {
  "productCode" : "EU_H",
  "category" : "Heavy Lamb"
}, {
  "productCode" : "EU_L",
  "category" : "Light Lamb"
} ]

Sheep and goat meat markets

Example of a request

GET /api/sheepAndGoat/markets HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat markets

[].marketCode

String

The code of the sheep and goat market.

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ {
  "marketCode" : "ALL"
}, {
  "marketCode" : "BE"
} ]
Parameter Optional Description

memberStateCodes

true

The optional codes of the EU Member States.

years

true

The optional year to search for a specific sheep and goat production volume(s).

months

true

The optional month name(s) to search for sheep and goat. They must be comma-separated and cannot be numbers.

meats

true

The optional sheep and goat meat name(s) must be comma-separated. For more details check REST API : /api/sheepAndGoat/production/meats

items

true

The optional sheep and goat meat item(s) must be comma-separated. For more details check REST API : /api/sheepAndGoat/production/items

Example of a request

GET /api/sheepAndGoat/production?memberStateCodes=AT&meats=Sheepmeat&items=Slaughterings&years=2022&months=June HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat production volumes

[].memberStateCode

String

The code of the EU Member State.

[].memberStateName

String

The name of the EU Member State.

[].year

Number

The year corresponding to the sheep and goat production volume..

[].month

String

The month of the year.

[].meat

String

The meat type of the sheep and goat.

[].item

String

The specific sheep and goat item.

[].tonnes

Number

The number of production volume in 1000 Tonnes.

[].heads

Number

The number of production volume in 1000 Heads.

[].kgPerHead

Number

The number of production volume in Kg/head.

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ {
  "memberStateCode" : "AT",
  "memberStateName" : "Austria",
  "year" : 2022,
  "month" : "June",
  "meat" : "Sheepmeat",
  "item" : "Slaughterings",
  "tonnes" : 0.56,
  "heads" : 28.49,
  "kgPerHead" : 19.66
} ]

Sheep and goat production meat

Example of a request

GET /api/sheepAndGoat/production/meats HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat production meats

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ "Sheepmeat", "Goat meat" ]

Sheep and goat production items

Example of a request

GET /api/sheepAndGoat/production/items HTTP/1.1
Content-Type: application/json;charset=UTF-8
Accept: application/json

Response fields

Path Type Description

[]

Array

Array with Sheep and Goat items

Example of a response

HTTP/1.1 200 OK
Content-Type: application/json

[ "Slaughterings", "Slaughterings, other than in slaughterhouses" ]