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": 20,
    "next": null,
    "previous": null,
    "results": [
        {
            "id": 1153,
            "bidding": 1022,
            "information": "up to",
            "amount": "500000.00",
            "currency": "USD"
        },
        {
            "id": 621,
            "bidding": 579,
            "information": "in der Höhe von",
            "amount": "5000.00",
            "currency": "EUR"
        },
        {
            "id": 626,
            "bidding": 527,
            "information": "in der Höhe von",
            "amount": "20000.00",
            "currency": "EUR"
        },
        {
            "id": 860,
            "bidding": 426,
            "information": "für den Forschungspreis",
            "amount": "10000.00",
            "currency": "EUR"
        },
        {
            "id": 861,
            "bidding": 426,
            "information": "für die Medaille",
            "amount": "2500.00",
            "currency": "EUR"
        },
        {
            "id": 390,
            "bidding": 431,
            "information": "monatliche Stipendienrate",
            "amount": "1300.00",
            "currency": "EUR"
        },
        {
            "id": 1154,
            "bidding": 1023,
            "information": "up to",
            "amount": "250000.00",
            "currency": "USD"
        },
        {
            "id": 1022,
            "bidding": 879,
            "information": "in der Höhe von",
            "amount": "750000.00",
            "currency": "CHF"
        },
        {
            "id": 1155,
            "bidding": 1024,
            "information": "for up to 5 years up to",
            "amount": "1500000.00",
            "currency": "EUR"
        },
        {
            "id": 740,
            "bidding": 407,
            "information": "monatlicher Stipendienbetrag bis zu",
            "amount": "1800.00",
            "currency": "EUR"
        },
        {
            "id": 614,
            "bidding": 236,
            "information": "je Förderpreis",
            "amount": "3000.00",
            "currency": "EUR"
        },
        {
            "id": 986,
            "bidding": 839,
            "information": "monthly grant rate",
            "amount": "1250.00",
            "currency": "EUR"
        },
        {
            "id": 966,
            "bidding": 817,
            "information": "Personalkostensatz pro Doktorand*in und Jahr",
            "amount": "49320.00",
            "currency": "EUR"
        },
        {
            "id": 1085,
            "bidding": 499,
            "information": "maximale Fördersumme pro Projekt p.a.",
            "amount": "30000.00",
            "currency": "EUR"
        },
        {
            "id": 1021,
            "bidding": 616,
            "information": "Personalkostensatz pro Doktorand*in und Jahr",
            "amount": "49320.00",
            "currency": "EUR"
        },
        {
            "id": 978,
            "bidding": 831,
            "information": "a sum of",
            "amount": "200000.00",
            "currency": "USD"
        },
        {
            "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": 1074,
            "bidding": 941,
            "information": "Fördersumme bis max.",
            "amount": "20000.00",
            "currency": "EUR"
        },
        {
            "id": 1128,
            "bidding": 999,
            "information": "max.",
            "amount": "20000.00",
            "currency": "EUR"
        }
    ]
}