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-02T16:57:16Z in 0.257 seconds.

total_count:
5445
hits:

10 results

  1. id:
    2026-112512
    buyer:

    1 results

    1. id:
      8bc26d6da5ea8c30dd53e895b702a20a
      organizationId:
      972418013
      name:
      Bodø Kommune
    heading:
    2026/18557 - Anskaffelse av suge- og spylebiltjenester
    description:
    Avtalen omfatter leveranse av suge- og spylebiltjenester til Bodø kommune, herunder planlagte og akutte oppdrag knyttet til tømming, rengjøring, vedlikehold og funksjonskontroll av sandfang, kummer, fettutskillere, oljeutskillere og tilhørende avløpssystemer. Tjenestene inkluderer spyling av tette eller delvis tette avløp, kamerainspeksjon ved behov, samt borttransport og levering av avfall til godkjent mottak, alt utført i samsvar med gjeldende regelverk. Leverandøren skal sikre tilstrekkelig beredskap, responstid, dokumentasjon, HMS og miljømessig forsvarlig utførelse, og varsle oppdragsgiver om forhold som krever tiltak utover ordinær drift. Avtalen omfatter også andre likeartede eller nært beslektede tjenester som naturlig faller innenfor formålet.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    6400000.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-29T13:29:43Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  2. id:
    2026-112523
    buyer:

    1 results

    1. id:
      e120e6b43c701e930edc76becb845f39
      organizationId:
      863320852
      name:
      Flakstad kommune
    heading:
    Intensjonskunngjøring anskaffelse av Framsikt
    description:
    Flakstad kommune har til hensikt å inngå avtale med Framsikt AS for kjøp av digital plattform for virksomhetsstyring.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    1100000.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-30T09:21:46Z
    deadline:
    not reported by source
    sentToTed:
    no
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  3. id:
    2026-112498
    buyer:

    1 results

    1. id:
      e65311027f04744b5d2330351412f04e
      organizationId:
      872418032
      name:
      Rana Kommune
    heading:
    Tjenestekonsesjon BPA - RK2026
    description:
    Rana kommune lyser ut tjenestekonsesjonskontrakter for brukerstyrt personlig assistanse (BPA) med fritt brukervalg. Vi ber leverandører søke konsesjon for å levere assistenttimer i BPA-ordningen til brukere i kommunen. Konsesjonen gis for 2 +1 + 1 +1 + 1 år, tilsammen maks 6 år.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    100000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    not reported by source
    issueDate:
    2026-07-29T08:53:30Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-30
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  4. id:
    2026-112479
    buyer:

    1 results

    1. id:
      9cf0b918be75599e920bb04490db7d68
      organizationId:
      967518190
      name:
      Iris Salten IKS
    heading:
    Rammeavtale på revisjonstjenester – Iris Salten IKS
    description:
    Innkjøpsservice Advokatfirma AS gjennomfører anskaffelsen på oppdrag for Iris Salten IKS. For ytterligere informasjon se konkurransegrunnlag med vedlegg.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-28T07:37:52Z
    deadline:
    2026-08-31T10:00:58Z
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  5. id:
    2026-112480
    buyer:

    1 results

    1. id:
      7fcceaaff6948f767e629e00b5fcc8d1
      organizationId:
      916879067
      name:
      SYKEHUSINNKJØP HF
    heading:
    Intensjonskunngjøring: Elektronisk system for pasientovervåking og klinisk dokumentasjon
    description:
    Oppdragsgiver Sykehusinnkjøp vil i henhold til anskaffelsesregelverkets § 21-5 kunngjøre at Helse Nord skal anskaffe regional avtale for kjøp av et elektronisk pasientovervåkningssystem og klinisk dokumentasjon. Bakgrunnen er at Oppdragsgiver mener det foreligger hjemmel i anskaffelsesforskriftens § 13-4 til å inngå kontrakt direkte da det bare er en bestemt leverandør som kan oppfylle Helse Nord sitt behov. Se vedlegg i kunngjøringen.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_INTENT
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_INTENT
    2. RESULT
    status:
    not reported by source
    issueDate:
    2026-07-28T08:30:08Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  6. id:
    2026-112484
    buyer:

    1 results

    1. id:
      2d20aebe07a30c63c7054478dd4c8496
      organizationId:
      971032081
      name:
      Statens vegvesen
    heading:
    E10 Evenes flyplasskryss
    description:
    Prosjektet E10 Evenes Flyplasskryss omfatter prosjektering og bygging av ny og sikker adkomst til Evenes flyplass for kjøretøy og myke trafikanter. Kontrakten omfatter: - Prosjektering - Bygging av omkjøringsvei - Riving av eksisterende Nautå bru - Bygging av oppgradert E10, arm til flyplassen, delvis heving av vei i dagens horisontallinje, delvis nybygging av vei. - To brukonstruksjoner over Nautåelva - T-kryss - Ett-felts rundkjøring - Gang- /og sykkelvei langs Flyplassveien - Adkomstvei til ny pumpestasjon og parkerings areal - System for håndtering av overvann fra veger, anleggs elektro og landskap. - På vegne av FIE (Felles infrastruktur Evenes): Prosjektering og bygging av nødvendige kommunale VA-ledninger - Bygging av innsynskjerm mot forsvaret, og opsjon på forlengelse av denne
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    250000000.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-28T09:09:47Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  7. id:
    2026-112467
    buyer:

    3 results

    1. id:
      7d0c624a03acbde5e02263d64544166d
      organizationId:
      964982953
      name:
      Nordland fylkeskommune
    2. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    3. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    heading:
    Oppgradering av ventilasjonsanlegg - Fylkeshuset
    description:
    Nordland fylkeskommune ønsker å oppgradere ventilasjonsanlegget ved Fylkeshuset i Bodø. Formålet med oppgraderingen er å erstatte dagens hovedaggregat med en mer moderne og energieffektiv løsning, der kjøkkenavtrekk, normalventilasjon i 1 etg og varmesentral håndteres av et separat aggregat.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-27T08:17:31Z
    deadline:
    2026-09-01T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-28
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  8. id:
    2026-112470
    buyer:

    3 results

    1. id:
      7d0c624a03acbde5e02263d64544166d
      organizationId:
      964982953
      name:
      Nordland fylkeskommune
    2. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    3. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    heading:
    Nytt nødlysanlegg - Saltdal videregående skole
    description:
    Tilbudsforespørselen gjelder prosjektering og levering av nytt nødlysanlegg ved Saltdal videregående skole.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-27T10:48:47Z
    deadline:
    2026-09-07T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-28
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  9. id:
    2026-112441
    buyer:

    1 results

    1. id:
      a2ba5b6b8bda63d7a5f0d4afa8054f11
      organizationId:
      938712441
      name:
      ALSTAHAUG KOMMUNE
    heading:
    25655 TS GS Haugerud
    description:
    Prosjektet omfatter etablering av gatebelysning langs fylkesvei 7268 fra Åsmoveien frem til boligfeltet ved Haugerud. Tiltaket er omtalt i Trafikksikkerhetsplanen for Alstahaug kommune 2023–2030 (side 27 og 29) og har mottatt tilskuddsmidler fra Nordland fylkeskommune.Hensikten er å legge til rette for en tryggere og mer attraktiv ferdselsvei for myke trafikanter langs FV7268. Traséen strekker seg over ca. 900 m hvor det skal etableres 20 gatelyspunkter og 6 trekkekummer.Anlegget vil etter ferdigstillelse bli overlevert til Nordland fylkeskommune.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    5000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-24T08:35:40Z
    deadline:
    2026-08-31T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-25
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  10. id:
    2026-112411
    buyer:

    1 results

    1. id:
      fe506da62d6d354a4e1afeb7f05d94b4
      organizationId:
      984019327
      name:
      Iris Service AS
    heading:
    Anskaffelse av hjullaster – Iris Service AS
    description:
    Innkjøpsservice Advokatfirma AS gjennomfører anskaffelsen på oppdrag for Iris Service AS. For ytterligere informasjon se konkurransegrunnlag med vedlegg.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-21T12:52:19Z
    deadline:
    2026-08-26T10:00:58Z
    sentToTed:
    yes
    publicationDate:
    2026-07-23
    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:
5445
hits:

10 results

  1. id:
    2026-112512
    buyer:

    1 results

    1. id:
      8bc26d6da5ea8c30dd53e895b702a20a
      organizationId:
      972418013
      name:
      Bodø Kommune
    heading:
    2026/18557 - Anskaffelse av suge- og spylebiltjenester
    description:
    Avtalen omfatter leveranse av suge- og spylebiltjenester til Bodø kommune, herunder planlagte og akutte oppdrag knyttet til tømming, rengjøring, vedlikehold og funksjonskontroll av sandfang, kummer, fettutskillere, oljeutskillere og tilhørende avløpssystemer. Tjenestene inkluderer spyling av tette eller delvis tette avløp, kamerainspeksjon ved behov, samt borttransport og levering av avfall til godkjent mottak, alt utført i samsvar med gjeldende regelverk. Leverandøren skal sikre tilstrekkelig beredskap, responstid, dokumentasjon, HMS og miljømessig forsvarlig utførelse, og varsle oppdragsgiver om forhold som krever tiltak utover ordinær drift. Avtalen omfatter også andre likeartede eller nært beslektede tjenester som naturlig faller innenfor formålet.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    6400000.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-29T13:29:43Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  2. id:
    2026-112523
    buyer:

    1 results

    1. id:
      e120e6b43c701e930edc76becb845f39
      organizationId:
      863320852
      name:
      Flakstad kommune
    heading:
    Intensjonskunngjøring anskaffelse av Framsikt
    description:
    Flakstad kommune har til hensikt å inngå avtale med Framsikt AS for kjøp av digital plattform for virksomhetsstyring.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    1100000.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-30T09:21:46Z
    deadline:
    not reported by source
    sentToTed:
    no
    publicationDate:
    2026-07-31
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  3. id:
    2026-112498
    buyer:

    1 results

    1. id:
      e65311027f04744b5d2330351412f04e
      organizationId:
      872418032
      name:
      Rana Kommune
    heading:
    Tjenestekonsesjon BPA - RK2026
    description:
    Rana kommune lyser ut tjenestekonsesjonskontrakter for brukerstyrt personlig assistanse (BPA) med fritt brukervalg. Vi ber leverandører søke konsesjon for å levere assistenttimer i BPA-ordningen til brukere i kommunen. Konsesjonen gis for 2 +1 + 1 +1 + 1 år, tilsammen maks 6 år.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    100000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    not reported by source
    issueDate:
    2026-07-29T08:53:30Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-30
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  4. id:
    2026-112479
    buyer:

    1 results

    1. id:
      9cf0b918be75599e920bb04490db7d68
      organizationId:
      967518190
      name:
      Iris Salten IKS
    heading:
    Rammeavtale på revisjonstjenester – Iris Salten IKS
    description:
    Innkjøpsservice Advokatfirma AS gjennomfører anskaffelsen på oppdrag for Iris Salten IKS. For ytterligere informasjon se konkurransegrunnlag med vedlegg.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-28T07:37:52Z
    deadline:
    2026-08-31T10:00:58Z
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  5. id:
    2026-112480
    buyer:

    1 results

    1. id:
      7fcceaaff6948f767e629e00b5fcc8d1
      organizationId:
      916879067
      name:
      SYKEHUSINNKJØP HF
    heading:
    Intensjonskunngjøring: Elektronisk system for pasientovervåking og klinisk dokumentasjon
    description:
    Oppdragsgiver Sykehusinnkjøp vil i henhold til anskaffelsesregelverkets § 21-5 kunngjøre at Helse Nord skal anskaffe regional avtale for kjøp av et elektronisk pasientovervåkningssystem og klinisk dokumentasjon. Bakgrunnen er at Oppdragsgiver mener det foreligger hjemmel i anskaffelsesforskriftens § 13-4 til å inngå kontrakt direkte da det bare er en bestemt leverandør som kan oppfylle Helse Nord sitt behov. Se vedlegg i kunngjøringen.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_INTENT
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_INTENT
    2. RESULT
    status:
    not reported by source
    issueDate:
    2026-07-28T08:30:08Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  6. id:
    2026-112484
    buyer:

    1 results

    1. id:
      2d20aebe07a30c63c7054478dd4c8496
      organizationId:
      971032081
      name:
      Statens vegvesen
    heading:
    E10 Evenes flyplasskryss
    description:
    Prosjektet E10 Evenes Flyplasskryss omfatter prosjektering og bygging av ny og sikker adkomst til Evenes flyplass for kjøretøy og myke trafikanter. Kontrakten omfatter: - Prosjektering - Bygging av omkjøringsvei - Riving av eksisterende Nautå bru - Bygging av oppgradert E10, arm til flyplassen, delvis heving av vei i dagens horisontallinje, delvis nybygging av vei. - To brukonstruksjoner over Nautåelva - T-kryss - Ett-felts rundkjøring - Gang- /og sykkelvei langs Flyplassveien - Adkomstvei til ny pumpestasjon og parkerings areal - System for håndtering av overvann fra veger, anleggs elektro og landskap. - På vegne av FIE (Felles infrastruktur Evenes): Prosjektering og bygging av nødvendige kommunale VA-ledninger - Bygging av innsynskjerm mot forsvaret, og opsjon på forlengelse av denne
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    250000000.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-28T09:09:47Z
    deadline:
    not reported by source
    sentToTed:
    yes
    publicationDate:
    2026-07-29
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  7. id:
    2026-112467
    buyer:

    3 results

    1. id:
      7d0c624a03acbde5e02263d64544166d
      organizationId:
      964982953
      name:
      Nordland fylkeskommune
    2. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    3. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    heading:
    Oppgradering av ventilasjonsanlegg - Fylkeshuset
    description:
    Nordland fylkeskommune ønsker å oppgradere ventilasjonsanlegget ved Fylkeshuset i Bodø. Formålet med oppgraderingen er å erstatte dagens hovedaggregat med en mer moderne og energieffektiv løsning, der kjøkkenavtrekk, normalventilasjon i 1 etg og varmesentral håndteres av et separat aggregat.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-27T08:17:31Z
    deadline:
    2026-09-01T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-28
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  8. id:
    2026-112470
    buyer:

    3 results

    1. id:
      7d0c624a03acbde5e02263d64544166d
      organizationId:
      964982953
      name:
      Nordland fylkeskommune
    2. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    3. id:
      cd901f33f55f70297403296655ba02c8
      organizationId:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
      name:
      NORDLAND FYLKESKOMMUNE TRANSPORT OG INFRASTRUKTUR
    heading:
    Nytt nødlysanlegg - Saltdal videregående skole
    description:
    Tilbudsforespørselen gjelder prosjektering og levering av nytt nødlysanlegg ved Saltdal videregående skole.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-27T10:48:47Z
    deadline:
    2026-09-07T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-28
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  9. id:
    2026-112441
    buyer:

    1 results

    1. id:
      a2ba5b6b8bda63d7a5f0d4afa8054f11
      organizationId:
      938712441
      name:
      ALSTAHAUG KOMMUNE
    heading:
    25655 TS GS Haugerud
    description:
    Prosjektet omfatter etablering av gatebelysning langs fylkesvei 7268 fra Åsmoveien frem til boligfeltet ved Haugerud. Tiltaket er omtalt i Trafikksikkerhetsplanen for Alstahaug kommune 2023–2030 (side 27 og 29) og har mottatt tilskuddsmidler fra Nordland fylkeskommune.Hensikten er å legge til rette for en tryggere og mer attraktiv ferdselsvei for myke trafikanter langs FV7268. Traséen strekker seg over ca. 900 m hvor det skal etableres 20 gatelyspunkter og 6 trekkekummer.Anlegget vil etter ferdigstillelse bli overlevert til Nordland fylkeskommune.
    locationId:
    estimatedValue:
    currencyCode:
    NOK
    amount:
    5000000.0
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-24T08:35:40Z
    deadline:
    2026-08-31T10:00:00Z
    sentToTed:
    no
    publicationDate:
    2026-07-25
    placeOfPerformance:
    procurementStrategicLabels:

    No results.

  10. id:
    2026-112411
    buyer:

    1 results

    1. id:
      fe506da62d6d354a4e1afeb7f05d94b4
      organizationId:
      984019327
      name:
      Iris Service AS
    heading:
    Anskaffelse av hjullaster – Iris Service AS
    description:
    Innkjøpsservice Advokatfirma AS gjennomfører anskaffelsen på oppdrag for Iris Service AS. For ytterligere informasjon se konkurransegrunnlag med vedlegg.
    locationId:
    estimatedValue:
    not reported by source
    type:
    ANNOUNCEMENT_OF_COMPETITION
    allTypes:

    2 results

    1. ANNOUNCEMENT_OF_COMPETITION
    2. COMPETITION
    status:
    ACTIVE
    issueDate:
    2026-07-21T12:52:19Z
    deadline:
    2026-08-26T10:00:58Z
    sentToTed:
    yes
    publicationDate:
    2026-07-23
    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.