Nexx360 Documentation
  • Nexx360 solutions
  • Nexx360 account
    • Account creation
    • Account settings
      • Add and manage users
      • Configure bidders
      • Create blocklists
      • Implement throttling
  • General configuration
    • Introduction
    • Add and manage websites
    • Add and manage tagIds
    • Bid reductions
    • Extra Feature module
    • Cookie Sync script
    • Available bidders
  • Prebid Adapter
    • Introduction
    • Update Prebid with Nexx360 Adapter
    • Multiformat bids
  • VAST / CTV
    • Introduction
    • Create VAST Config
    • Build VAST ad tag
    • Connect the Google Ad Manager (GAM) account
    • Cookie Sync
    • Sample CTV Tag
  • Native
    • Introduction
    • Native Configs
    • GET
    • POST
    • Sample Response
  • Direct Call
    • Introduction
    • API Reference
    • Microsoft AST Example
    • Google Ad Manager Example
      • Connect the Google Ad Manager (GAM) account
  • AMP Nexx360
    • Introduction
    • Ad Server setup
    • Add rtc-config object to amp-ad units
  • OpenRTB
    • Introduction
    • Video Example
    • Mobile Example
    • Cookie Sync
  • Inapp
    • Introduction
    • Request Exemple
    • Google Ad Manager setup
  • API Management
    • Introduction
    • Connexion
    • Sites
      • Create Site
      • Update site
      • Get Site
      • List Sites
    • TagIds (Stored requests)
      • Create a new tagId (stored request)
      • Update tagId (stored request)
      • Get tagId (Stored request)
      • List tagIds (Stored requests) by site
  • API REPORTING
    • Introduction
    • Connexion
    • Reporting
      • Impressions
      • Auctions
      • Bids
  • API Campaign
    • Introduction
    • Connexion
    • Orders
      • Create a new order
      • Update order
      • Get Order
      • List Orders
    • Line Items
      • Create a Line Item
      • Update Line Item
      • Get Line Item
      • List Line Items by Order
    • Creatives
      • Create a Creative
      • Update Creative
      • Get Creative
      • List Creatives by Line Items
  • Legacy - Direct call Nexx360
    • Introduction
    • Nexx Web features
      • Smart autorefresh
      • Incontent injection
        • Automated injection
        • Dynamic injection
      • Lazy Loading
      • Non-consent traffic monetisation
    • Integrate Nexx Web script on your site
      • Integration with GAM adserver
        • Nexx Web tag
        • Connect the Google Ad Manager (GAM) account
      • Integration with Xandr adserver
  • Nexx360 console
  • Nexx360 site
Powered by GitBook
On this page

Was this helpful?

  1. API REPORTING
  2. Reporting

Bids

POST /api

Use this method to get your reporting data of the bids

Headers

Name
Value

Authorization

Basic <token>

Body

{
  table: "bids",
  startDate: string, // (format: YYYY-MM-DDThh:mm:ss)
  endDate: string, // (format: YYYY-MM-DDThh:mm:ss)
  fields: [
    { name: "timestamp", as?: string },
    { name: "account_id", as?: string },
    { name: "account_name", as?: string },
    { name: "site_id", as?: string },
    { name: "site_name", as?: string },
    { name: "tag_id", as?: string },
    { name: "tag_name", as?: string },
    { name: "auction_type", as?: string },
    { name: "mediatype", as?: string },
    { name: "inventory_type", as?: string },
    { name: "os", as?: string },
    { name: "browser", as?: string },
    { name: "device", as?: string },
    { name: "consent", as?: string },
    { name: "domain", as?: string },
    { name: "area", as?: string },
    { name: "ssp", as?: string },
    { name: "ssp_alias", as?: string },
    { name: "classification", as?: string },
    { name: "status", as?: string },
    { name: "buyeruid", as?: string }
  ],
  metrics: [
    { name: "bids", as?: string },
    { name: "auctions", as?: string },
    { name: "bid_net_eur", as?: string },
    { name: "bid_net_usd", as?: string },
    { name: "bid_gross_eur", as?: string },
    { name: "bid_gross_usd", as?: string }
  ],
  timeSplit: "day" | "hour"
}
[
    {
        "timestamp": "2025-06-01T00:00:00.000Z",
        "account_id": 1,
        "account_name": "account_name",
        "site_id": 1,
        "site_name": "site_name",
        "tag_id": "12345678",
        "tag_name": "tag_name",
        "auction_type": "booster",
        "mediatype": "banner",
        "inventory_type": "web",
        "os": "Android",
        "browser": "Chrome",
        "device": "Tablet",
        "consent": true,
        "domain": "domain.com",
        "area": "area",
        "ssp": "ssp",
        "ssp_alias": "ssp_alias",
        "classification": "A",
        "status": "PLAYED",
        "buyeruid": true,
        "bids": "1",
        "auctions": "2",
        "bid_net_eur": 1,
        "bid_net_usd": 2,
        "bid_gross_eur": 3,
        "bid_gross_usd": 4
    }
]

Unauthorized

[
    {
        "message": "'unvalid_name' must be equal to one of the allowed values",
        "params": {
            "allowedValues": [
                "timestamp",
                "account_id",
                "account_name",
                "site_id",
                "site_name",
                "tag_id",
                "tag_name",
                "auction_type",
                "mediatype",
                "inventory_type",
                "os",
                "browser",
                "device",
                "ssp",
                "ssp_alias",
                "size",
                "consent",
                "buyeruid",
                "domain",
                "adomain",
                "deal_external_id",
                "country"
            ]
        }
    }
]
PreviousAuctionsNextIntroduction

Last updated 1 day ago

Was this helpful?