List biddings.

Fields

id (integer)

Primary key.

title (string)

Title of bidding.

short (string)

Short description of bidding.

description (string)

Full description of bidding.

mode (string)

Mode of submission.

url (string)

URL to web presence.

short (boolean)

Bidding running or not.

funders (integer[])

List of foreign keys to funders for this bidding.

Expansions

To activate relation expansion add the desired fields as a comma separated list to the expand query parameter like this:

?expand=<field>,<field>,<field>,...

The following relational fields can be expanded:

  • funders
  • deadlines
  • endowments

Filters

To filter for exact value matches:

?<fieldname>=<value>

Possible exact filters:

  • running

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:

  • title: iexact, contains, icontains
  • mode: iexact, contains, icontains
  • funders: in
  • start: gt, gte, lt, lte, date
GET /v1/research/bidding/?format=api&offset=20&ordering=start
HTTP 200 OK
  Allow: GET, HEAD, OPTIONS
  Content-Type: application/json
  Vary: Accept
  
  {
    "count": 21,
    "next": null,
    "previous": "https://api-test.medunigraz.at/v1/research/bidding/?format=api&limit=20&ordering=start",
    "results": [
        {
            "id": 86,
            "title": "WTZ-Call: Sci. & Techn. Cooperation between Austria and North Macedonia",
            "short": "Deadline: 11.11.2025

\r\nThe aim of this call is to stimulate international research cooperation between Austria and North Macedonia by promoting researchers’ mobility. The call is open to all scientific disciplines, including social sciences and humanities.", "description": "Eligible applicants:
\r\n\r\n
  • Researchers at higher education institutions (minimum requirement: PhD) and researchers at non-university research institutions in basic research (minimum requirement: Master).\r\n
  • PhD/doctoral students may participate as team members only; Bachelor and Master graduates are not eligible for funding.\r\n\r\n", "mode": "online", "url": "https://oead.at/fileadmin/Dokumente/oead.at/IHK/WTZ/Call_Guideline_AT_MK_26-28.pdf", "running": false, "start": "2025-10-17T15:05:26+02:00", "funders": [ 20 ], "deadlines": [ 2485 ], "endowments": [ 613 ] } ] }