search_doffin

Search Norwegian public procurement notices on Doffin.

Direct GET

For navigating agents: open the HTML page with parameters in the URL. The result is fetched and displayed without screenshots or form filling.

Open this validated HTML GET URL

https://allemannsdata.com/wiki/kilder/doffin/search_doffin/?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0

Replace {query}, {types}, {statuses}, {contract_nature}, {cpv_codes}, {locations}, {buyer}, {winner}, {date_from}, {date_to}, {sort_by}, {page}, {hits_per_page}, {include_placeholders} with values. Remove unused optional parameters from the URL.

For software and dashboards: Read the operation descriptor. The JSON GET template is https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0. Open this exact request as JSON.

ParameterRequirementJSON typeDescription
queryoptionalstringFree-text search (Norwegian or English), e.g. "IT-drift", "snørydding", "rammeavtale konsulent". Start here.
typesoptionalunionFilter by notice type. Parent types: PLANNING, COMPETITION, RESULT. Specific types: ANNOUNCEMENT_OF_COMPETITION, DYNAMIC_PURCHASING_SCHEME, QUALIFICATION_SCHEME, ANNOUNCEMENT_OF_INTENT, PRE_ANNOUNCEMENT, ADVISORY_NOTICE, NOTICE_ON_BUYER_PROFILE, ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT, CHANGE_OF_CONCLUSION_OF_CONTRACT, CANCELLED_OR_MISSING_CONCLUSION_OF_CONTRACT. Use ["COMPETITION"] + statuses=["ACTIVE"] for open tenders.
statusesoptionalunionACTIVE (open for bids), EXPIRED, AWARDED, CANCELLED.
contract_natureoptionalunionWORKS, SERVICES and/or SUPPLIES.
cpv_codesoptionalunion8-digit CPV codes, e.g. ["45000000"]. Matches the code and its children. Find codes with search_cpv_codes(). Best combined with a free-text query.
locationsoptionalunionNUTS-style location ids, e.g. ["NO060"] (Trøndelag), or "anyw" for non-location-bound. See list_location_codes().
buyeroptionalunionBuyer organization full name(s) exactly as written on notices, e.g. ["Trondheim kommune"]. Resolved to Doffin's internal buyer id via a free-text lookup; names that match no buyer are reported in "note" and, if none match, no results are returned (rather than an unfiltered search). Pass the 32-hex buyer id from a result's buyer field directly to skip the lookup.
winneroptionalunionDoffin's internal supplier id (32-hex). Winner names cannot be used - they are not present in search results to resolve against.
date_fromoptionalunionPublication date lower bound, "YYYY-MM-DD".
date_tooptionalunionPublication date upper bound, "YYYY-MM-DD".
sort_byoptionalstringRELEVANCE (default), PUBLICATION_DATE_DESC, PUBLICATION_DATE_ASC, DEADLINE, ESTIMATED_VALUE_ASC, ESTIMATED_VALUE_DESC.
pageoptionalinteger1-based page number.
hits_per_pageoptionalinteger1-50 (default 10).
include_placeholdersoptionalbooleanBy default, hits whose buyer fields look like unfilled eForm template values (org id 123456789, placeholder buyer names) are dropped from the results as junk. Set True to keep them, each flagged with "possible_placeholder": true.
limitoptionalintegerGateway page size; default 25, maximum 100.
offsetoptionalintegerNumber of list items to skip; default 0.
Generated JavaScript, Python and response structure

Use JSON when the user requests code, machine-readable data, value extraction or further computation. Use the HTML GET page to identify the correct source and verify parameters.

Example for generated JavaScript and Python

https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0

Replace URL placeholders and remove unused optional parameters.

JavaScript in a dashboard

const url = "https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0";
const response = await fetch(url);
if (!response.ok) {
  const failure = await response.json();
  throw new Error(`${failure.error.code}: ${failure.error.message} ${failure.suggestion}`);
}
const result = await response.json();
const data = result.data;

Python without additional packages

import json
from urllib.request import urlopen

url = "https://allemannsdata.com/wiki/api/v1/kilder/doffin/search_doffin?query=&types={types}&statuses={statuses}&contract_nature={contract_nature}&cpv_codes={cpv_codes}&locations={locations}&buyer={buyer}&winner={winner}&date_from={date_from}&date_to={date_to}&sort_by=RELEVANCE&page=1&hits_per_page=10&include_placeholders=false&limit=25&offset=0"
with urlopen(url) as response:
    result = json.load(response)
data = result["data"]

Response structure

{
  "source": "doffin",
  "operation": "search_doffin",
  "parameters": {},
  "data": {},
  "entities": [],
  "_meta": {"retrieved_at": "...", "sources": [], "cache": {}},
  "_links": {"self": "...", "source": "...", "wiki": "..."}
}
Form for manual use

The form is a fallback for people and browser agents that cannot open the GET URL directly.

Type: string. Free-text search (Norwegian or English), e.g. "IT-drift", "snørydding", "rammeavtale konsulent". Start here.
Type: list of string (comma-separated). Filter by notice type. Parent types: PLANNING, COMPETITION, RESULT. Specific types: ANNOUNCEMENT_OF_COMPETITION, DYNAMIC_PURCHASING_SCHEME, QUALIFICATION_SCHEME, ANNOUNCEMENT_OF_INTENT, PRE_ANNOUNCEMENT, ADVISORY_NOTICE, NOTICE_ON_BUYER_PROFILE, ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT, CHANGE_OF_CONCLUSION_OF_CONTRACT, CANCELLED_OR_MISSING_CONCLUSION_OF_CONTRACT. Use ["COMPETITION"] + statuses=["ACTIVE"] for open tenders.
Type: list of string (comma-separated). ACTIVE (open for bids), EXPIRED, AWARDED, CANCELLED.
Type: list of string (comma-separated). WORKS, SERVICES and/or SUPPLIES.
Type: list of string (comma-separated). 8-digit CPV codes, e.g. ["45000000"]. Matches the code and its children. Find codes with search_cpv_codes(). Best combined with a free-text query.
Type: list of string (comma-separated). NUTS-style location ids, e.g. ["NO060"] (Trøndelag), or "anyw" for non-location-bound. See list_location_codes().
Type: list of string (comma-separated). Buyer organization full name(s) exactly as written on notices, e.g. ["Trondheim kommune"]. Resolved to Doffin's internal buyer id via a free-text lookup; names that match no buyer are reported in "note" and, if none match, no results are returned (rather than an unfiltered search). Pass the 32-hex buyer id from a result's buyer field directly to skip the lookup.
Type: list of string (comma-separated). Doffin's internal supplier id (32-hex). Winner names cannot be used - they are not present in search results to resolve against.
Type: string. Publication date lower bound, "YYYY-MM-DD".
Type: string. Publication date upper bound, "YYYY-MM-DD".
Type: string. RELEVANCE (default), PUBLICATION_DATE_DESC, PUBLICATION_DATE_ASC, DEADLINE, ESTIMATED_VALUE_ASC, ESTIMATED_VALUE_DESC.
Type: integer. 1-based page number.
Type: integer. 1-50 (default 10).
Type: yes/no. By default, hits whose buyer fields look like unfilled eForm template values (org id 123456789, placeholder buyer names) are dropped from the results as junk. Set True to keep them, each flagged with "possible_placeholder": true.

Result

Source: Doffin and TED. Retrieved 2026-08-02T18:56:20Z in 0.272 seconds.

total_count:
6596
hits:

10 results

  1. id:
    2026-112535
    buyer:

    1 results

    1. id:
      35950576de1358c07599e6e29731f3e5
      organizationId:
      940837685
      name:
      Tynset kommune
    heading:
    TY-26-07 Totalentreprise - Riving av boliger Litun
    description:
    Tynset kommune har til hensikt å inngå kontrakt med totalentreprenør for riving av boliger ved Litun.Formålet med anskaffelsen er å dekke oppdragsgivers behov for komplett riving av byggene med tilhørende konstruksjoner, overflater og infrastruktur.Leverandøren skal bruke sin fagkunnskap og kompetanse for å bidra til at kontraktens formål blir ivaretatt.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-31T10:14:40Z
    deadline:
    2026-08-26T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-08-01
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  2. id:
    2026-112536
    buyer:

    1 results

    1. id:
      35950576de1358c07599e6e29731f3e5
      organizationId:
      940837685
      name:
      Tynset kommune
    heading:
    TY-26-08 Totalentreprise - TTF boliger Litun
    description:
    Tynset kommune har til hensikt å inngå kontrakt med totalentreprenør for oppføring av TFF-boliger.Formålet med anskaffelsen er å dekke oppdragsgivers behov for å bygge 12 nye, funksjonelle ogtilrettelagte boliger for personer med behov for tilrettelagte tjenester.Leverandøren skal bruke sin fagkunnskap og kompetanse for å bidra til at kontraktens formål blirivaretatt.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-31T10:41:34Z
    deadline:
    2026-09-01T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-08-01
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  3. id:
    2026-112509
    buyer:

    1 results

    1. id:
      05dc8f08c30c08ee935578ae7ff737c6
      organizationId:
      925836613
      name:
      Norsk Tipping
    heading:
    Gartnertjenester og snørydding
    description:
    Formålet med anskaffelsen er å sikre at uteområdene på Norsk Tippings eiendom på Hamar fremstår trygge, fremkommelige og presentable gjennom hele året. Oppdragsgiver ønsker en helhetlig og forutsigbar tjenesteleveranse som dekker både drift, skjøtsel og vedlikehold av grøntarealer i sommerhalvåret, samt snørydding og strøing i vinterhalvåret. Anskaffelsen skal dekke to hovedtjenesteområder: · Gartnertjenester i sommerhalvåret, ca. 7000m² · Snørydding og strøing i vinterhalvåret, ca. 8200m² Oppdragsgiver har behov for én leverandør som kan levere en samlet, helårs tjeneste med ansvar for alle relevante driftsoppgaver. Kontrakten har en varighet på 3 år, med mulighet for forlengelse 1 + 1 + 1 år, slik at total varighet er inntil 6 år. Det vil være muligheter for å komme på befaring hos Norsk Tipping i uke 34. Kontaktinformasjon er oppgitt i konkurransegrunnlaget.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    8000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-29T13:11:56Z
    deadline:
    2026-09-03T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    1 results

    1. ENVIRONMENT_PROCUREMENT
  4. id:
    2026-112507
    buyer:

    1 results

    1. id:
      21e0ec453f1571192964e981a2097cfc
      organizationId:
      945578564
      name:
      Lillehammer Kommune
    heading:
    Prosjektledertjeneste - Aidn EPJ-løsning (HSG)
    description:
    Leverandører inviteres til å delta i konkurranse om å anskaffe prosjektledertjeneste til å koordinere implementering av Aidn EPJ-løsning for kommunene i Helseregion Sør-Gudbrandsdal (HSG).
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-29T11:02:00Z
    deadline:
    2026-08-17T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-30
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  5. id:
    2026-112374
    buyer:

    1 results

    1. id:
      62993545b3aabc7e6fa5f7313bc3eb91
      organizationId:
      961 381 819
      name:
      Valdreskommunene ved Sør-Aurdal kommune
    heading:
    Matvarer storhusholdning Valdreskommunene
    description:
    Valdreskommunene Nord-Aurdal, Sør-Aurdal, Øystre Slidre, Vestre Slidre, Vang og Etnedal skal inngå rammeavtaler vedrørende 6 varegrupper, primært for leveranse til storhusholdning/kjøkken ved sykehjem.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T13:34:57Z
    deadline:
    2026-09-10T08:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-21
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  6. id:
    2026-112344
    buyer:

    2 results

    1. id:
      75c73ac8f0fd5fdf80b19ae995e40ba6
      organizationId:
      995 607 409
      name:
      IKT Valdres IKS
    2. id:
      8e8fcc0a4ac84542bf9fce9ff420eea5
      organizationId:
      933038173
      name:
      Etnedal kommune
    heading:
    Asfaltering av gangveier, veier og plasser – Moajordet, Bruflat sentrum og Haugalie.
    description:
    Etnedal kommune skal asfaltere gangveier, veier og en parkeringsplass, områdene vil være i nærheten av Bruflat sentrum, men 2 av veistrekningene vil være hhv. 9,4km og 4,5km fra Bruflat sentrum til sammen er arealet som skal asfalteres ca 5800m2.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T08:13:48Z
    deadline:
    2026-08-17T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  7. id:
    2026-112345
    buyer:

    1 results

    1. id:
      8f865aba0514ade18234995abcbb6788
      organizationId:
      839893132
      name:
      Nord-Fron kommune
    heading:
    26/3220 - Totalentreprise kommunelager Nord-Fron
    description:
    Oppdragsgiver skal etablere et nytt kommunelager i Vinstra sentrum vest. Prosjektet omfatter komplett prosjektering og utførelse i totalentreprise (NS 8407), inkludert grunnarbeider, bæresystem, bygningskropp, tekniske installasjoner (VVS, elektro, ventilasjon), utomhusarbeider og nødvendige miljø‑ og klimatiltak. Bygget skal støtte kommunens logistikk-, beredskaps‑ og driftsfunksjoner. Det er utarbeidet en byggeskikkveielder for Vinstra Sentrum som benyttes veiledene for utforming, men som tilpasses byggets funksjon. Entreprenøren skal levere en klimaplan som viser tiltak for minimum 30 % reduksjon av utslipp fra byggeplassdriften ut over lovpålagte krav.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    35000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T06:51:33Z
    deadline:
    2026-08-21T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  8. id:
    2026-112355
    buyer:

    1 results

    1. id:
      8c83fa6b63f773f1365bb49561414237
      organizationId:
      959377677
      name:
      Lom kommune
    heading:
    Totalentreprise for omsorgsbustader Røyskattlia 18
    description:
    Lom kommune er oppdragsgiver for prosjektet. Prosjektet omfatter nybygg for omsorgsboliger for mennesker med nedsett funksjonsevne, med totalt 12 enheter med tilhørende fellesareal, personalbase og støttefunksjonar, totalt ca. 1429m² BTA. Prosjektet omfatter og opparbeiding av ca. 3050m² areal utendørs. Se øvrige dokumenter og kravspesifikasjon i konkurransegrunnlaget del 2.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    76700000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-18T13:11:05Z
    deadline:
    2026-08-14T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  9. id:
    2026-112327
    buyer:

    1 results

    1. id:
      05dc8f08c30c08ee935578ae7ff737c6
      organizationId:
      925836613
      name:
      Norsk Tipping
    heading:
    Eventbyråtjenester
    description:
    Formålet med anskaffelsen er å inngå rammeavtale med et profesjonelt eventbyrå som kan bistå Norsk Tipping med planlegging, gjennomføring og evaluering av arrangementer og eventer.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    20000000.0
    type:
    ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
    2. RESULT
    status:
    not reported by source
    issueDate:
    2026-07-16T07:58:59Z
    deadline:
    2028-06-29T00:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-17
    placeOfPerformance:
    procurementStrategicLabels:

    1 results

    1. ENVIRONMENT_PROCUREMENT
  10. id:
    2026-112328
    buyer:

    1 results

    1. id:
      bed87b482aba566c9511f70f17cf6dc3
      organizationId:
      916075855
      name:
      FORSVARSMATERIELL
    heading:
    Anskaffelse av vikartjenester innen helse
    description:
    Rammeavtalens formål er å dekke Oppdragsgivers behov for innleie av helsepersonell for å sikre forsvarlig drift av Forsvarets helsetjenester, jf. statsansatteloven § 11 og forskrift om innleie fra bemanningsforetak § 3.Avtalen omfatter primært innleie av leger og sykepleiere, som utgjør det vesentligste behovet. De innleide legene vil primært bistå med å gjennomføre helsesjekk av personer som er kalt inn til sesjon. I tillegg omfatter avtalen innleie av øvrig helsepersonell med autorisasjon etter helsepersonelloven § 48, herunder, men ikke begrenset til, helsesekretærer, farmasøyter, psykologer og annet helsefaglig personell.Det vises til konkurransegrunnlaget for øvrig for en nærmere angivelse av anskaffelsens omfang.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    45000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-15T16:31:37Z
    deadline:
    2026-08-24T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-17
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

limit:
25
offset:
0
returned:
10
has_more_results:
yes
truncated:
yes
next_offset:
10
Show all fields in HTML
total_count:
6596
hits:

10 results

  1. id:
    2026-112535
    buyer:

    1 results

    1. id:
      35950576de1358c07599e6e29731f3e5
      organizationId:
      940837685
      name:
      Tynset kommune
    heading:
    TY-26-07 Totalentreprise - Riving av boliger Litun
    description:
    Tynset kommune har til hensikt å inngå kontrakt med totalentreprenør for riving av boliger ved Litun.Formålet med anskaffelsen er å dekke oppdragsgivers behov for komplett riving av byggene med tilhørende konstruksjoner, overflater og infrastruktur.Leverandøren skal bruke sin fagkunnskap og kompetanse for å bidra til at kontraktens formål blir ivaretatt.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-31T10:14:40Z
    deadline:
    2026-08-26T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-08-01
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  2. id:
    2026-112536
    buyer:

    1 results

    1. id:
      35950576de1358c07599e6e29731f3e5
      organizationId:
      940837685
      name:
      Tynset kommune
    heading:
    TY-26-08 Totalentreprise - TTF boliger Litun
    description:
    Tynset kommune har til hensikt å inngå kontrakt med totalentreprenør for oppføring av TFF-boliger.Formålet med anskaffelsen er å dekke oppdragsgivers behov for å bygge 12 nye, funksjonelle ogtilrettelagte boliger for personer med behov for tilrettelagte tjenester.Leverandøren skal bruke sin fagkunnskap og kompetanse for å bidra til at kontraktens formål blirivaretatt.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-31T10:41:34Z
    deadline:
    2026-09-01T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-08-01
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  3. id:
    2026-112509
    buyer:

    1 results

    1. id:
      05dc8f08c30c08ee935578ae7ff737c6
      organizationId:
      925836613
      name:
      Norsk Tipping
    heading:
    Gartnertjenester og snørydding
    description:
    Formålet med anskaffelsen er å sikre at uteområdene på Norsk Tippings eiendom på Hamar fremstår trygge, fremkommelige og presentable gjennom hele året. Oppdragsgiver ønsker en helhetlig og forutsigbar tjenesteleveranse som dekker både drift, skjøtsel og vedlikehold av grøntarealer i sommerhalvåret, samt snørydding og strøing i vinterhalvåret. Anskaffelsen skal dekke to hovedtjenesteområder: · Gartnertjenester i sommerhalvåret, ca. 7000m² · Snørydding og strøing i vinterhalvåret, ca. 8200m² Oppdragsgiver har behov for én leverandør som kan levere en samlet, helårs tjeneste med ansvar for alle relevante driftsoppgaver. Kontrakten har en varighet på 3 år, med mulighet for forlengelse 1 + 1 + 1 år, slik at total varighet er inntil 6 år. Det vil være muligheter for å komme på befaring hos Norsk Tipping i uke 34. Kontaktinformasjon er oppgitt i konkurransegrunnlaget.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    8000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-29T13:11:56Z
    deadline:
    2026-09-03T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    1 results

    1. ENVIRONMENT_PROCUREMENT
  4. id:
    2026-112507
    buyer:

    1 results

    1. id:
      21e0ec453f1571192964e981a2097cfc
      organizationId:
      945578564
      name:
      Lillehammer Kommune
    heading:
    Prosjektledertjeneste - Aidn EPJ-løsning (HSG)
    description:
    Leverandører inviteres til å delta i konkurranse om å anskaffe prosjektledertjeneste til å koordinere implementering av Aidn EPJ-løsning for kommunene i Helseregion Sør-Gudbrandsdal (HSG).
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-29T11:02:00Z
    deadline:
    2026-08-17T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-30
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  5. id:
    2026-112374
    buyer:

    1 results

    1. id:
      62993545b3aabc7e6fa5f7313bc3eb91
      organizationId:
      961 381 819
      name:
      Valdreskommunene ved Sør-Aurdal kommune
    heading:
    Matvarer storhusholdning Valdreskommunene
    description:
    Valdreskommunene Nord-Aurdal, Sør-Aurdal, Øystre Slidre, Vestre Slidre, Vang og Etnedal skal inngå rammeavtaler vedrørende 6 varegrupper, primært for leveranse til storhusholdning/kjøkken ved sykehjem.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T13:34:57Z
    deadline:
    2026-09-10T08:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-21
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  6. id:
    2026-112344
    buyer:

    2 results

    1. id:
      75c73ac8f0fd5fdf80b19ae995e40ba6
      organizationId:
      995 607 409
      name:
      IKT Valdres IKS
    2. id:
      8e8fcc0a4ac84542bf9fce9ff420eea5
      organizationId:
      933038173
      name:
      Etnedal kommune
    heading:
    Asfaltering av gangveier, veier og plasser – Moajordet, Bruflat sentrum og Haugalie.
    description:
    Etnedal kommune skal asfaltere gangveier, veier og en parkeringsplass, områdene vil være i nærheten av Bruflat sentrum, men 2 av veistrekningene vil være hhv. 9,4km og 4,5km fra Bruflat sentrum til sammen er arealet som skal asfalteres ca 5800m2.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T08:13:48Z
    deadline:
    2026-08-17T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  7. id:
    2026-112345
    buyer:

    1 results

    1. id:
      8f865aba0514ade18234995abcbb6788
      organizationId:
      839893132
      name:
      Nord-Fron kommune
    heading:
    26/3220 - Totalentreprise kommunelager Nord-Fron
    description:
    Oppdragsgiver skal etablere et nytt kommunelager i Vinstra sentrum vest. Prosjektet omfatter komplett prosjektering og utførelse i totalentreprise (NS 8407), inkludert grunnarbeider, bæresystem, bygningskropp, tekniske installasjoner (VVS, elektro, ventilasjon), utomhusarbeider og nødvendige miljø‑ og klimatiltak. Bygget skal støtte kommunens logistikk-, beredskaps‑ og driftsfunksjoner. Det er utarbeidet en byggeskikkveielder for Vinstra Sentrum som benyttes veiledene for utforming, men som tilpasses byggets funksjon. Entreprenøren skal levere en klimaplan som viser tiltak for minimum 30 % reduksjon av utslipp fra byggeplassdriften ut over lovpålagte krav.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    35000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-17T06:51:33Z
    deadline:
    2026-08-21T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  8. id:
    2026-112355
    buyer:

    1 results

    1. id:
      8c83fa6b63f773f1365bb49561414237
      organizationId:
      959377677
      name:
      Lom kommune
    heading:
    Totalentreprise for omsorgsbustader Røyskattlia 18
    description:
    Lom kommune er oppdragsgiver for prosjektet. Prosjektet omfatter nybygg for omsorgsboliger for mennesker med nedsett funksjonsevne, med totalt 12 enheter med tilhørende fellesareal, personalbase og støttefunksjonar, totalt ca. 1429m² BTA. Prosjektet omfatter og opparbeiding av ca. 3050m² areal utendørs. Se øvrige dokumenter og kravspesifikasjon i konkurransegrunnlaget del 2.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    76700000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-18T13:11:05Z
    deadline:
    2026-08-14T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-18
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  9. id:
    2026-112327
    buyer:

    1 results

    1. id:
      05dc8f08c30c08ee935578ae7ff737c6
      organizationId:
      925836613
      name:
      Norsk Tipping
    heading:
    Eventbyråtjenester
    description:
    Formålet med anskaffelsen er å inngå rammeavtale med et profesjonelt eventbyrå som kan bistå Norsk Tipping med planlegging, gjennomføring og evaluering av arrangementer og eventer.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    20000000.0
    type:
    ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_CONCLUSION_OF_CONTRACT
    2. RESULT
    status:
    not reported by source
    issueDate:
    2026-07-16T07:58:59Z
    deadline:
    2028-06-29T00:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-17
    placeOfPerformance:
    procurementStrategicLabels:

    1 results

    1. ENVIRONMENT_PROCUREMENT
  10. id:
    2026-112328
    buyer:

    1 results

    1. id:
      bed87b482aba566c9511f70f17cf6dc3
      organizationId:
      916075855
      name:
      FORSVARSMATERIELL
    heading:
    Anskaffelse av vikartjenester innen helse
    description:
    Rammeavtalens formål er å dekke Oppdragsgivers behov for innleie av helsepersonell for å sikre forsvarlig drift av Forsvarets helsetjenester, jf. statsansatteloven § 11 og forskrift om innleie fra bemanningsforetak § 3.Avtalen omfatter primært innleie av leger og sykepleiere, som utgjør det vesentligste behovet. De innleide legene vil primært bistå med å gjennomføre helsesjekk av personer som er kalt inn til sesjon. I tillegg omfatter avtalen innleie av øvrig helsepersonell med autorisasjon etter helsepersonelloven § 48, herunder, men ikke begrenset til, helsesekretærer, farmasøyter, psykologer og annet helsefaglig personell.Det vises til konkurransegrunnlaget for øvrig for en nærmere angivelse av anskaffelsens omfang.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    45000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-15T16:31:37Z
    deadline:
    2026-08-24T10:00:00Z
    sentToTed:
    yes
    publicationDate:
    2026-07-17
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

limit:
25
offset:
0
returned:
10
has_more_results:
yes
truncated:
yes
next_offset:
10
Will you use the result in generated code?

Open the same result as JSON

Continue exploring

How an AI agent should use this page

Ground rule: Navigate with HTML GET links to keep explanations and relationships. Use the page's JSON alternative only when concrete values must be extracted, compared or computed.

How to use the search_doffin lookup

  1. Replace the placeholders in the HTML GET template; remove optional parameters you do not need.
  2. Check types, units, limits and ID formats in the parameter table.
  3. Follow linked results to canonical pages before combining sources.

Misreading to avoid: An empty list means "no results for this lookup". An error message or unavailable source does not mean the data does not exist.

Source-specific next step

Go to the source page for other operations. Use the JSON template only after the HTML result shows that the parameters and source are correct.