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": 19,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 986,
            "bidding": 839,
            "information": "monthly grant rate",
            "amount": "1250.00",
            "currency": "EUR"
        },
        {
            "id": 446,
            "bidding": 475,
            "information": "in der Höhe von",
            "amount": "15000.00",
            "currency": "EUR"
        },
        {
            "id": 1085,
            "bidding": 499,
            "information": "maximale Fördersumme pro Projekt p.a.",
            "amount": "30000.00",
            "currency": "EUR"
        },
        {
            "id": 1099,
            "bidding": 967,
            "information": "pro Jahr max.",
            "amount": "3000000.00",
            "currency": "EUR"
        },
        {
            "id": 1008,
            "bidding": 863,
            "information": "maximum funding amount per project ",
            "amount": "40000.00",
            "currency": "EUR"
        },
        {
            "id": 903,
            "bidding": 16,
            "information": "1. Preis",
            "amount": "150000.00",
            "currency": "EUR"
        },
        {
            "id": 978,
            "bidding": 831,
            "information": "a sum of",
            "amount": "200000.00",
            "currency": "USD"
        },
        {
            "id": 906,
            "bidding": 762,
            "information": "funding amount up to",
            "amount": "40000.00",
            "currency": "EUR"
        },
        {
            "id": 893,
            "bidding": 757,
            "information": "Hauptpreis in der Höhe von",
            "amount": "7000.00",
            "currency": "EUR"
        },
        {
            "id": 629,
            "bidding": 98,
            "information": "pro COST Action max.",
            "amount": "600000.00",
            "currency": "EUR"
        },
        {
            "id": 894,
            "bidding": 757,
            "information": "Nachwuchspreis in der Höhe von",
            "amount": "3500.00",
            "currency": "EUR"
        },
        {
            "id": 1014,
            "bidding": 870,
            "information": "Gehalt für die Projektleitung pro Jahr",
            "amount": "95640.00",
            "currency": "EUR"
        },
        {
            "id": 1100,
            "bidding": 30,
            "information": "Personalkostensatz Doktorand*in pro Jahr",
            "amount": "47520.00",
            "currency": "EUR"
        },
        {
            "id": 967,
            "bidding": 818,
            "information": "approximately per academic year",
            "amount": "43000.00",
            "currency": "EUR"
        },
        {
            "id": 1123,
            "bidding": 994,
            "information": "in der Höhe von",
            "amount": "3000.00",
            "currency": "EUR"
        },
        {
            "id": 1135,
            "bidding": 1006,
            "information": "per month",
            "amount": "3000.00",
            "currency": "EUR"
        },
        {
            "id": 613,
            "bidding": 86,
            "information": "max. pro Projekt",
            "amount": "10000.00",
            "currency": "EUR"
        },
        {
            "id": 880,
            "bidding": 265,
            "information": "maximum per project ",
            "amount": "10000.00",
            "currency": "EUR"
        },
        {
            "id": 1128,
            "bidding": 999,
            "information": "max.",
            "amount": "20000.00",
            "currency": "EUR"
        }
    ]
}