Skip to main content
GET
/
v1
/
offers
List Offers
curl --request GET \
  --url https://api.lab.fieldnode.dev/v1/offers \
  --header 'Authorization: Bearer <token>'
{
  "items": [
    {
      "id": "<string>",
      "consumerId": "<string>",
      "manufacturerId": "<string>",
      "factoryId": "<string>",
      "partId": "<string>",
      "title": "<string>",
      "description": "<string>",
      "rfqId": "<string>",
      "currency": "NOK",
      "itemsInUnit": 123,
      "priceMatrix": [
        {
          "unitFrom": 123,
          "unitTo": 123,
          "pricePerUnit": 123,
          "leadTimeDays": 123,
          "orderFee": 123
        }
      ],
      "shippingPrice": 123,
      "frameworkNumber": "<string>"
    }
  ],
  "hasMore": true
}

Documentation Index

Fetch the complete documentation index at: https://developer.fieldnode.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

page
integer<int32>
default:1

Page number for pagination, starting at 1.

Required range: x >= 1
pageSize
integer<int32>
default:10

Page size for pagination.

Required range: 1 <= x <= 50
view
enum<string>
default:IP_OWNER

View mode for listing offers.

Available options:
IP_OWNER
activated
boolean

Filter by activation status.

Response

The request has succeeded.

items
object[]
required

List of items.

hasMore
boolean
required

Whether there are more items to fetch.