# Feed Intakes

Feed Intake resources represent how much feed a sow received one a given date.

https://api.gestal.cloud/integration/feed-intakes/:feed_intake_id

# Parameters

Basic parameters and queries are supported.

# The feed intake object

In addition to the common request attributes, the following attributes define the object.

Attribute Type Description
gestal_id 64 bit integer The Gestal system unique ID for a sow.
parity integer Sow parity (if available) when it was fed.
fed_at date Date at which the sow was fed.
quantity integer The quantity in grams ate by the sow this day.
target_quantity integer The target quantity in grams to be eaten by the sow.
percent integer Gestal feeding curve's percentage (available only in lactation and in version 22.02).
curve string Gestal feeding curve's name.
schedule string Gestal feeding schedule's name.
feed string Name of feed delivered.
group string Group which location is part of.
section string The barn section where feed was delivered, can be:
breeding, gestation, lactation, or growing.
location string Name of location where feed was delivered.
day integer Lactation or gestation day, related to the Gestal feeding curve.
batch string The batch of which the sow is currently part of. (ex: a service group or wean group)

# Example Response

{
  "data": [
    {
      "cloud_id": "fi_fSI3g1E99b2h2WA43hgXs7eNCilBEtl",
      "gestal_id": 48257620,
      "parity": 2,
      "fed_at": "2001-01-01",
      "quantity": 7000,
      "target_quantity": 9000,
      "percent": 100,
      "curve": "P1",
      "schedule": "30 min",
      "feed": "Feed 1",
      "group": "Room A",
      "section": "lactation",
      "location": "1234",
      "batch": "19-13",
      "day": 2,
      "created_at": "2001-01-01T01:01:01.000Z",
      "updated_at": "2001-01-01T01:01:01.000Z"
    }
  ],
  "meta": {
    "total": 1,
    "page_total": 1,
    "pages": 1,
    "per_page": 100,
    "current_page": 1,
    "next_page": false,
    "previous_page": false,
    "first_page": true,
    "last_page": true,
    "out_of_range": false
  }
}
Last Updated: 8/27/2025, 2:40:38 PM