List bidding endowments.

Fields

id (integer)

Primary key.

bidding (integer)

Foreign key to bidding.

information (string)

Generic textual information.

amount (number)

Monetary amount of endowment.

currency (string)

Currency used to define amount.

Filters

To filter for exact value matches:

?<fieldname>=<value>

Possible exact filters:

  • bidding

For advanced filtering use lookups:

?<fieldname>__<lookup>=<value>

All fields with advanced lookups can also be used for exact value matches as described above.

Possible advanced lookups:

  • amount: gt, gte, lt, lte
GET /v1/research/bidding:endowment/?format=api
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 14,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 890,
            "bidding": 755,
            "information": "in der Höhe von",
            "amount": "3000.00",
            "currency": "EUR"
        },
        {
            "id": 1173,
            "bidding": 401,
            "information": "Dissertationen: 1 Preis zu",
            "amount": "1700.00",
            "currency": "EUR"
        },
        {
            "id": 1155,
            "bidding": 1024,
            "information": "for up to 5 years up to",
            "amount": "1500000.00",
            "currency": "EUR"
        },
        {
            "id": 876,
            "bidding": 752,
            "information": "pro Projekt bis max.",
            "amount": "300000.00",
            "currency": "EUR"
        },
        {
            "id": 986,
            "bidding": 839,
            "information": "monthly grant rate",
            "amount": "1250.00",
            "currency": "EUR"
        },
        {
            "id": 746,
            "bidding": 43,
            "information": "Höhe des Stipendiums pro Jahr",
            "amount": "52080.00",
            "currency": "EUR"
        },
        {
            "id": 814,
            "bidding": 590,
            "information": "per month max.",
            "amount": "2700.00",
            "currency": "EUR"
        },
        {
            "id": 822,
            "bidding": 717,
            "information": "in der Höhe von",
            "amount": "4000.00",
            "currency": "EUR"
        },
        {
            "id": 953,
            "bidding": 718,
            "information": "in der Höhe von",
            "amount": "15000.00",
            "currency": "EUR"
        },
        {
            "id": 1144,
            "bidding": 1014,
            "information": "Förderhöhe bis ",
            "amount": "9000000.00",
            "currency": "EUR"
        },
        {
            "id": 1014,
            "bidding": 870,
            "information": "Gehalt für die Projektleitung pro Jahr",
            "amount": "95640.00",
            "currency": "EUR"
        },
        {
            "id": 996,
            "bidding": 850,
            "information": "in der Höhe von",
            "amount": "10000.00",
            "currency": "EUR"
        },
        {
            "id": 1100,
            "bidding": 30,
            "information": "Personalkostensatz Doktorand*in pro Jahr",
            "amount": "47520.00",
            "currency": "EUR"
        },
        {
            "id": 1128,
            "bidding": 999,
            "information": "max.",
            "amount": "20000.00",
            "currency": "EUR"
        }
    ]
}