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
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.
| Parameter | Requirement | JSON type | Description |
|---|---|---|---|
query | optional | string | Free-text search (Norwegian or English), e.g. "IT-drift", "snørydding", "rammeavtale konsulent". Start here. |
types | optional | union | 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. |
statuses | optional | union | ACTIVE (open for bids), EXPIRED, AWARDED, CANCELLED. |
contract_nature | optional | union | WORKS, SERVICES and/or SUPPLIES. |
cpv_codes | optional | union | 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. |
locations | optional | union | NUTS-style location ids, e.g. ["NO060"] (Trøndelag), or "anyw" for non-location-bound. See list_location_codes(). |
buyer | optional | union | 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. |
winner | optional | union | Doffin's internal supplier id (32-hex). Winner names cannot be used - they are not present in search results to resolve against. |
date_from | optional | union | Publication date lower bound, "YYYY-MM-DD". |
date_to | optional | union | Publication date upper bound, "YYYY-MM-DD". |
sort_by | optional | string | RELEVANCE (default), PUBLICATION_DATE_DESC, PUBLICATION_DATE_ASC, DEADLINE, ESTIMATED_VALUE_ASC, ESTIMATED_VALUE_DESC. |
page | optional | integer | 1-based page number. |
hits_per_page | optional | integer | 1-50 (default 10). |
include_placeholders | optional | boolean | 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. |
limit | optional | integer | Gateway page size; default 25, maximum 100. |
offset | optional | integer | Number 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": "...", "feedback": "..."}
}
Form for manual use
The form is a fallback for people and browser agents that cannot open the GET URL directly.
Result
- total_count:
- 2
- hits:
2 results
- id:
- 2026-114073
- buyer:
24 results
- id:
- 7e05723806d184bb5004ce3b860f0376
- organization_id:
- 942110464
- name:
- Trondheim kommune
- id:
- fb06b63aeb60d374a48a9689d8ae3d3b
- organization_id:
- 970161414
- name:
- Bakklandet Menighets Omsorgsenter
- id:
- bb81f8eb8c95d553e6efa726ec385f37
- organization_id:
- 938658374
- name:
- Trondhjems Hospital
- id:
- c2597403b21a0225af1fc0e40e56b483
- organization_id:
- 875383922
- name:
- Kystad helse- og velferdssenter
- id:
- e4165db9788246be58adfdc634df52bb
- organization_id:
- 988 964 573
- name:
- Trondheim Renholdsverk AS
- id:
- 32de1b9c55b30a017151dedfc2e166a4
- organization_id:
- 984024924
- name:
- Heggstadmoen Eiendom AS
- id:
- 2d8f5e2f4011d27fd7109436719c4616
- organization_id:
- 921956452
- name:
- Tempevegen 25 AS
- id:
- ef95380459c2bd1add9ee3643bf61900
- organization_id:
- 976998294
- name:
- Kirkelig Fellesråd i Trondheim
- id:
- 4ba60fb4a42f47e3cd85c069b68172cf
- organization_id:
- 976998154
- name:
- Byåsen sokn
- id:
- fc87b9f6ecf869cea62119de1fb95165
- organization_id:
- 976998103
- name:
- Nidaros Domkirkes sokn
- id:
- e7e676cf086a62a278018ba6c62b818a
- organization_id:
- 976998960
- name:
- Klæbu sokn
- id:
- 739226ae5c1ebfd361be145eb166178f
- organization_id:
- 976998243
- name:
- Byneset og Leinstrand sokn
- id:
- 33c34bd99377baa97fa7b288970b8321
- organization_id:
- 976998081
- name:
- Nidelven sokn
- id:
- 6f65a5aa0b865933d072043ebc06bf77
- organization_id:
- 976998251
- name:
- Tiller sokn
- id:
- 62ba88c3c67c4b9a97af56fab59cbe89
- organization_id:
- 976998189
- name:
- Bakklandet og Lademoen sokn
- id:
- 700c8ab659586810bbce4132a6a3784b
- organization_id:
- 876998262
- name:
- Kolstad sokn
- id:
- 04d78d798e6430092b2e09a06d59c7e2
- organization_id:
- 976998146
- name:
- Sverresborg sokn
- id:
- abde0e99e0b681cc63bfce714e8986bb
- organization_id:
- 976998219
- name:
- Ranheim og Charlottenlund sokn
- id:
- 4f49ad6eb2bebc7afcfb3cb6d29074e1
- organization_id:
- 976998278
- name:
- Heimdal sokn
- id:
- 730f00da75b0d885acec130b4328ac7f
- organization_id:
- 976998197
- name:
- Strindheim sokn
- id:
- 3014c1485a138efb02ce54097931f59b
- organization_id:
- 976998200
- name:
- Strinda sokn
- heading:
- Rammeavtale på innfordringstjenester til Trondheim kommune
- description:
- Trondheim kommune, heretter kalt Oppdragsgiver inviterer til å gi tilbud på innfordringstjenester.Hovedmålet med rammeavtalen er å sikre en avtale med en profesjonell aktør som ivaretar kommunens kundegruppe på en god og skånsom måte, i tråd med Trondheim kommunes egne verdier. Målet med den nye avtalen er å samle hele innfordringsporteføljen til kommunen hos én leverandør. Leverandøren skal ha nødvendig kapasitet, kompetanse og tydelige rutinebeskrivelser for å ivareta alle Trondheim kommunes innfordringsområder, herunder blant annet kommunale eiendomsavgifter, kommunal husleie og annen restanse, parkering, startlån, sosiallån, UMS og for mye utbetalt lønn.Viser til konkurransedokumentene for ytterligere detaljer.
- location_id:
1 results
- NO060
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- COMPETITION
- ANNOUNCEMENT_OF_COMPETITION
- status:
- ACTIVE
- issueDate:
- 2026-09-07T08:25:16Z
- deadline:
- 2026-10-09T13:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2026-09-08
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- id:
- 2026-111709
- buyer:
39 results
- id:
- 7e05723806d184bb5004ce3b860f0376
- organization_id:
- 942110464
- name:
- Trondheim kommune
- id:
- fb06b63aeb60d374a48a9689d8ae3d3b
- organization_id:
- 970161414
- name:
- Bakklandet Menighets Omsorgsenter
- id:
- bb81f8eb8c95d553e6efa726ec385f37
- organization_id:
- 938658374
- name:
- Trondhjems Hospital
- id:
- c2597403b21a0225af1fc0e40e56b483
- organization_id:
- 875383922
- name:
- Kystad helse- og velferdssenter
- id:
- 2f765829e9b86a6ed544da83231b73c9
- organization_id:
- 981400690
- name:
- STAVNE ARBEID TRONDHEIM KF
- id:
- 8c80202e4bca90cb0e73bbc6021739a5
- organization_id:
- 923801154
- name:
- STAVNE INKLUDERING TRONDHEIM KF
- id:
- 301efa07142c80984d8b0a0ad7d1137a
- organization_id:
- 977015022
- name:
- KIRKELIG FELLESRÅD I TRONDHEIM ADMINISTRASJON OG ØKONOMI
- id:
- ef95380459c2bd1add9ee3643bf61900
- organization_id:
- 976998294
- name:
- KIRKELIG FELLESRÅD I TRONDHEIM
- id:
- 4ba60fb4a42f47e3cd85c069b68172cf
- organization_id:
- 976998154
- name:
- BYÅSEN SOKN
- id:
- fc87b9f6ecf869cea62119de1fb95165
- organization_id:
- 976998103
- name:
- NIDAROS DOMKIRKES SOKN
- id:
- e7e676cf086a62a278018ba6c62b818a
- organization_id:
- 976998960
- name:
- KLÆBU SOKN
- id:
- 739226ae5c1ebfd361be145eb166178f
- organization_id:
- 976998243
- name:
- BYNESET OG LEINSTRAND SOKN
- id:
- 33c34bd99377baa97fa7b288970b8321
- organization_id:
- 976998081
- name:
- NIDELVEN SOKN
- id:
- 6f65a5aa0b865933d072043ebc06bf77
- organization_id:
- 976998251
- name:
- TILLER SOKN
- id:
- 62ba88c3c67c4b9a97af56fab59cbe89
- organization_id:
- 976998189
- name:
- BAKKLANDET OG LADEMOEN SOKN
- id:
- 700c8ab659586810bbce4132a6a3784b
- organization_id:
- 876998262
- name:
- KOLSTAD SOKN
- id:
- 04d78d798e6430092b2e09a06d59c7e2
- organization_id:
- 976998146
- name:
- SVERRESBORG SOKN
- id:
- 4f49ad6eb2bebc7afcfb3cb6d29074e1
- organization_id:
- 976998278
- name:
- HEIMDAL SOKN
- id:
- 730f00da75b0d885acec130b4328ac7f
- organization_id:
- 976998197
- name:
- STRINDHEIM SOKN
- id:
- 3014c1485a138efb02ce54097931f59b
- organization_id:
- 976998200
- name:
- STRINDA SOKN
- id:
- 95e6d17db2fb472223a274854e16a7eb
- organization_id:
- 975669483
- name:
- NIDAROS DOMKOR
- id:
- 442d9570b4f150973402c8858a8dc7b1
- organization_id:
- 931006355
- name:
- NIDAROSDOMENS JENTEKOR
- id:
- cddab612ba6e747f8078f3d3b2380cac
- organization_id:
- 975685276
- name:
- NIDAROSDOMENS ORATORIEKOR
- id:
- c6ae7054f189bfc9aca11957c14f3a13
- organization_id:
- 921071086
- name:
- KIRKELIG DIALOGSENTER TRONDHEIM
- id:
- e4165db9788246be58adfdc634df52bb
- organization_id:
- 988964573
- name:
- TRONDHEIM RENHOLDSVERK AS
- id:
- 32de1b9c55b30a017151dedfc2e166a4
- organization_id:
- 984024924
- name:
- HEGGSTADMOEN EIENDOM AS
- id:
- 6904c1084cdb88916edb75b960104705
- organization_id:
- 951615390
- name:
- OLAVSHALLEN AS
- id:
- 8108ae2e84dad4cf854368f40f86dd6d
- organization_id:
- 981048369
- name:
- TRONDHEIM KINO AS
- id:
- 21c3ff0c5e782021a2b4f467a46b2df1
- organization_id:
- 998902398
- name:
- TRONDHEIM KINO EIENDOM AS
- id:
- e9aed24d761a01abffb0e324e9dcd958
- organization_id:
- 997378288
- name:
- TRONDHEIM KINO UTVIKLING AS
- id:
- 572893a95b63f6435f982464f5c5b7b2
- organization_id:
- 984496656
- name:
- FILMFEST TRONDHEIM AS
- id:
- eb3394f3e923fdb8320fefad2a2aed23
- organization_id:
- 914726441
- name:
- KINONOR AS
- id:
- d2efa777c3cfe333753cce29f22ec6a5
- organization_id:
- 995069156
- name:
- STORYTELLING MEDIA AS
- id:
- 8f7a3214eb3e2d29ef4f68104cbe5916
- organization_id:
- 932246139
- name:
- LEUTHENHAVEN AS
- id:
- 2d8f5e2f4011d27fd7109436719c4616
- organization_id:
- 921956452
- name:
- TEMPEVEGEN 25 AS
- id:
- abde0e99e0b681cc63bfce714e8986bb
- organization_id:
- 976998219
- name:
- RANHEIM OG CHARLOTTENLUND SOKN
- heading:
- Hovedbankavtale
- description:
- Trondheim kommune, heretter kalt Oppdragsgiver, har behov for en ny hovedbankavtale som gir en sikker, effektiv og fremtidsrettet drift, med fokus på økt automatisering og redusert sårbarhet. Avtalen skal dekke kommunens behov for et helhetlig konsernkontosystem, integrert betalingsformidling mot eksisterende fagsystemer, samt funksjonelle løsninger for forvaltning av tredjepartsmidler. Målet er å sikre en sømløs overgang slik at alle tjenester og systemer er i full drift fra 1. mai 2027.
- location_id:
1 results
- NO060
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 90000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- COMPETITION
- ANNOUNCEMENT_OF_COMPETITION
- status:
- EXPIRED
- issueDate:
- 2026-07-01T13:09:26Z
- deadline:
- 2026-09-01T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2026-07-03
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- limit:
- 25
- offset:
- 0
- returned:
- 2
- has_more_results:
- no
- truncated:
- no
Show all fields in HTML
- total_count:
- 2
- hits:
2 results
- id:
- 2026-114073
- buyer:
24 results
- id:
- 7e05723806d184bb5004ce3b860f0376
- organization_id:
- 942110464
- name:
- Trondheim kommune
- id:
- fb06b63aeb60d374a48a9689d8ae3d3b
- organization_id:
- 970161414
- name:
- Bakklandet Menighets Omsorgsenter
- id:
- bb81f8eb8c95d553e6efa726ec385f37
- organization_id:
- 938658374
- name:
- Trondhjems Hospital
- id:
- c2597403b21a0225af1fc0e40e56b483
- organization_id:
- 875383922
- name:
- Kystad helse- og velferdssenter
- id:
- e4165db9788246be58adfdc634df52bb
- organization_id:
- 988 964 573
- name:
- Trondheim Renholdsverk AS
- id:
- 32de1b9c55b30a017151dedfc2e166a4
- organization_id:
- 984024924
- name:
- Heggstadmoen Eiendom AS
- id:
- 2d8f5e2f4011d27fd7109436719c4616
- organization_id:
- 921956452
- name:
- Tempevegen 25 AS
- id:
- ef95380459c2bd1add9ee3643bf61900
- organization_id:
- 976998294
- name:
- Kirkelig Fellesråd i Trondheim
- id:
- 4ba60fb4a42f47e3cd85c069b68172cf
- organization_id:
- 976998154
- name:
- Byåsen sokn
- id:
- fc87b9f6ecf869cea62119de1fb95165
- organization_id:
- 976998103
- name:
- Nidaros Domkirkes sokn
- id:
- e7e676cf086a62a278018ba6c62b818a
- organization_id:
- 976998960
- name:
- Klæbu sokn
- id:
- 739226ae5c1ebfd361be145eb166178f
- organization_id:
- 976998243
- name:
- Byneset og Leinstrand sokn
- id:
- 33c34bd99377baa97fa7b288970b8321
- organization_id:
- 976998081
- name:
- Nidelven sokn
- id:
- 6f65a5aa0b865933d072043ebc06bf77
- organization_id:
- 976998251
- name:
- Tiller sokn
- id:
- 62ba88c3c67c4b9a97af56fab59cbe89
- organization_id:
- 976998189
- name:
- Bakklandet og Lademoen sokn
- id:
- 700c8ab659586810bbce4132a6a3784b
- organization_id:
- 876998262
- name:
- Kolstad sokn
- id:
- 04d78d798e6430092b2e09a06d59c7e2
- organization_id:
- 976998146
- name:
- Sverresborg sokn
- id:
- abde0e99e0b681cc63bfce714e8986bb
- organization_id:
- 976998219
- name:
- Ranheim og Charlottenlund sokn
- id:
- 4f49ad6eb2bebc7afcfb3cb6d29074e1
- organization_id:
- 976998278
- name:
- Heimdal sokn
- id:
- 730f00da75b0d885acec130b4328ac7f
- organization_id:
- 976998197
- name:
- Strindheim sokn
- id:
- 3014c1485a138efb02ce54097931f59b
- organization_id:
- 976998200
- name:
- Strinda sokn
- heading:
- Rammeavtale på innfordringstjenester til Trondheim kommune
- description:
- Trondheim kommune, heretter kalt Oppdragsgiver inviterer til å gi tilbud på innfordringstjenester.Hovedmålet med rammeavtalen er å sikre en avtale med en profesjonell aktør som ivaretar kommunens kundegruppe på en god og skånsom måte, i tråd med Trondheim kommunes egne verdier. Målet med den nye avtalen er å samle hele innfordringsporteføljen til kommunen hos én leverandør. Leverandøren skal ha nødvendig kapasitet, kompetanse og tydelige rutinebeskrivelser for å ivareta alle Trondheim kommunes innfordringsområder, herunder blant annet kommunale eiendomsavgifter, kommunal husleie og annen restanse, parkering, startlån, sosiallån, UMS og for mye utbetalt lønn.Viser til konkurransedokumentene for ytterligere detaljer.
- location_id:
1 results
- NO060
- estimatedValue:
- not reported by source
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- COMPETITION
- ANNOUNCEMENT_OF_COMPETITION
- status:
- ACTIVE
- issueDate:
- 2026-09-07T08:25:16Z
- deadline:
- 2026-10-09T13:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2026-09-08
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- id:
- 2026-111709
- buyer:
39 results
- id:
- 7e05723806d184bb5004ce3b860f0376
- organization_id:
- 942110464
- name:
- Trondheim kommune
- id:
- fb06b63aeb60d374a48a9689d8ae3d3b
- organization_id:
- 970161414
- name:
- Bakklandet Menighets Omsorgsenter
- id:
- bb81f8eb8c95d553e6efa726ec385f37
- organization_id:
- 938658374
- name:
- Trondhjems Hospital
- id:
- c2597403b21a0225af1fc0e40e56b483
- organization_id:
- 875383922
- name:
- Kystad helse- og velferdssenter
- id:
- 2f765829e9b86a6ed544da83231b73c9
- organization_id:
- 981400690
- name:
- STAVNE ARBEID TRONDHEIM KF
- id:
- 8c80202e4bca90cb0e73bbc6021739a5
- organization_id:
- 923801154
- name:
- STAVNE INKLUDERING TRONDHEIM KF
- id:
- 301efa07142c80984d8b0a0ad7d1137a
- organization_id:
- 977015022
- name:
- KIRKELIG FELLESRÅD I TRONDHEIM ADMINISTRASJON OG ØKONOMI
- id:
- ef95380459c2bd1add9ee3643bf61900
- organization_id:
- 976998294
- name:
- KIRKELIG FELLESRÅD I TRONDHEIM
- id:
- 4ba60fb4a42f47e3cd85c069b68172cf
- organization_id:
- 976998154
- name:
- BYÅSEN SOKN
- id:
- fc87b9f6ecf869cea62119de1fb95165
- organization_id:
- 976998103
- name:
- NIDAROS DOMKIRKES SOKN
- id:
- e7e676cf086a62a278018ba6c62b818a
- organization_id:
- 976998960
- name:
- KLÆBU SOKN
- id:
- 739226ae5c1ebfd361be145eb166178f
- organization_id:
- 976998243
- name:
- BYNESET OG LEINSTRAND SOKN
- id:
- 33c34bd99377baa97fa7b288970b8321
- organization_id:
- 976998081
- name:
- NIDELVEN SOKN
- id:
- 6f65a5aa0b865933d072043ebc06bf77
- organization_id:
- 976998251
- name:
- TILLER SOKN
- id:
- 62ba88c3c67c4b9a97af56fab59cbe89
- organization_id:
- 976998189
- name:
- BAKKLANDET OG LADEMOEN SOKN
- id:
- 700c8ab659586810bbce4132a6a3784b
- organization_id:
- 876998262
- name:
- KOLSTAD SOKN
- id:
- 04d78d798e6430092b2e09a06d59c7e2
- organization_id:
- 976998146
- name:
- SVERRESBORG SOKN
- id:
- 4f49ad6eb2bebc7afcfb3cb6d29074e1
- organization_id:
- 976998278
- name:
- HEIMDAL SOKN
- id:
- 730f00da75b0d885acec130b4328ac7f
- organization_id:
- 976998197
- name:
- STRINDHEIM SOKN
- id:
- 3014c1485a138efb02ce54097931f59b
- organization_id:
- 976998200
- name:
- STRINDA SOKN
- id:
- 95e6d17db2fb472223a274854e16a7eb
- organization_id:
- 975669483
- name:
- NIDAROS DOMKOR
- id:
- 442d9570b4f150973402c8858a8dc7b1
- organization_id:
- 931006355
- name:
- NIDAROSDOMENS JENTEKOR
- id:
- cddab612ba6e747f8078f3d3b2380cac
- organization_id:
- 975685276
- name:
- NIDAROSDOMENS ORATORIEKOR
- id:
- c6ae7054f189bfc9aca11957c14f3a13
- organization_id:
- 921071086
- name:
- KIRKELIG DIALOGSENTER TRONDHEIM
- id:
- e4165db9788246be58adfdc634df52bb
- organization_id:
- 988964573
- name:
- TRONDHEIM RENHOLDSVERK AS
- id:
- 32de1b9c55b30a017151dedfc2e166a4
- organization_id:
- 984024924
- name:
- HEGGSTADMOEN EIENDOM AS
- id:
- 6904c1084cdb88916edb75b960104705
- organization_id:
- 951615390
- name:
- OLAVSHALLEN AS
- id:
- 8108ae2e84dad4cf854368f40f86dd6d
- organization_id:
- 981048369
- name:
- TRONDHEIM KINO AS
- id:
- 21c3ff0c5e782021a2b4f467a46b2df1
- organization_id:
- 998902398
- name:
- TRONDHEIM KINO EIENDOM AS
- id:
- e9aed24d761a01abffb0e324e9dcd958
- organization_id:
- 997378288
- name:
- TRONDHEIM KINO UTVIKLING AS
- id:
- 572893a95b63f6435f982464f5c5b7b2
- organization_id:
- 984496656
- name:
- FILMFEST TRONDHEIM AS
- id:
- eb3394f3e923fdb8320fefad2a2aed23
- organization_id:
- 914726441
- name:
- KINONOR AS
- id:
- d2efa777c3cfe333753cce29f22ec6a5
- organization_id:
- 995069156
- name:
- STORYTELLING MEDIA AS
- id:
- 8f7a3214eb3e2d29ef4f68104cbe5916
- organization_id:
- 932246139
- name:
- LEUTHENHAVEN AS
- id:
- 2d8f5e2f4011d27fd7109436719c4616
- organization_id:
- 921956452
- name:
- TEMPEVEGEN 25 AS
- id:
- abde0e99e0b681cc63bfce714e8986bb
- organization_id:
- 976998219
- name:
- RANHEIM OG CHARLOTTENLUND SOKN
- heading:
- Hovedbankavtale
- description:
- Trondheim kommune, heretter kalt Oppdragsgiver, har behov for en ny hovedbankavtale som gir en sikker, effektiv og fremtidsrettet drift, med fokus på økt automatisering og redusert sårbarhet. Avtalen skal dekke kommunens behov for et helhetlig konsernkontosystem, integrert betalingsformidling mot eksisterende fagsystemer, samt funksjonelle løsninger for forvaltning av tredjepartsmidler. Målet er å sikre en sømløs overgang slik at alle tjenester og systemer er i full drift fra 1. mai 2027.
- location_id:
1 results
- NO060
- estimatedValue:
- currencyCode:
- NOK
- amount:
- 90000000.0
- type:
- ANNOUNCEMENT_OF_COMPETITION
- allTypes:
2 results
- COMPETITION
- ANNOUNCEMENT_OF_COMPETITION
- status:
- EXPIRED
- issueDate:
- 2026-07-01T13:09:26Z
- deadline:
- 2026-09-01T10:00:00Z
- sentToTed:
- yes
- publicationDate:
- 2026-07-03
- placeOfPerformance:
- procurementStrategicLabels:
No results.
- limit:
- 25
- offset:
- 0
- returned:
- 2
- has_more_results:
- no
- truncated:
- no
Will you use the result in generated code?
Is data missing or incorrect? Send feedback about this result.
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
- Replace the placeholders in the HTML GET template; remove optional parameters you do not need.
- Check types, units, limits and ID formats in the parameter table.
- 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
- Follow the notice ID to the canonical page; use CPV and location codes to narrow broad free-text searches.
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.
AI agent? Read the complete navigation and programming guide.