HookLogic (Criteo) Billing API

The Billing API from HookLogic (Criteo) — 3 operation(s) for billing.

Operations 3

POST /2026-07/retail-media/billing/partner-report /2026-07/retail-media/billing/partner-report #
GET /2026-07/retail-media/billing/partner-report/{requestId}/output /2026-07/retail-media/billing/partner-report/{requestId}/output #
GET /2026-07/retail-media/billing/partner-report/{requestId}/status /2026-07/retail-media/billing/partner-report/{requestId}/status #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/hooklogic-criteo-billing-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

hooklogic-criteo-billing-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Criteo Accounts Billing API
  description: Criteo API - RetailMedia
  version: 2026-07
servers:
- url: https://api.criteo.com
security:
- oauth: []
tags:
- name: Billing
paths:
  /2026-07/retail-media/billing/partner-report:
    post:
      tags:
      - Billing
      summary: /2026-07/retail-media/billing/partner-report
      description: Create a Partner Billing Report request.
      operationId: CreatePartnerBillingReportRequestV1
      requestBody:
        description: Partner Billing Report request object.
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ValueResourceInputPartnerBillingReportRequestV1'
        required: true
      responses:
        '201':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityResourceOutcomePartnerBillingReportStatusV1'
      security:
      - oauth:
        - RetailMedia_Billing_Read
  /2026-07/retail-media/billing/partner-report/{requestId}/output:
    get:
      tags:
      - Billing
      summary: /2026-07/retail-media/billing/partner-report/{requestId}/output
      description: Get the output of an existing Partner Billing Report.
      operationId: GetPartnerBillingReportOutputV1
      parameters:
      - name: requestId
        in: path
        description: The id of a Partner Billing Report request.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/csv:
              schema:
                type: string
                format: binary
            application/json:
              schema:
                type: string
                format: binary
      security:
      - oauth:
        - RetailMedia_Billing_Read
  /2026-07/retail-media/billing/partner-report/{requestId}/status:
    get:
      tags:
      - Billing
      summary: /2026-07/retail-media/billing/partner-report/{requestId}/status
      description: Get the status of an existing Partner Billing Report.
      operationId: GetPartnerBillingReportStatusV1
      parameters:
      - name: requestId
        in: path
        description: The id of a Partner Billing Report request.
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/EntityResourceOutcomePartnerBillingReportStatusV1'
      security:
      - oauth:
        - RetailMedia_Billing_Read
components:
  schemas:
    EntityResourcePartnerBillingReportStatusV1:
      type:
      - object
      - 'null'
      properties:
        attributes:
          $ref: '#/components/schemas/PartnerBillingReportStatusV1'
        id:
          type:
          - string
          - 'null'
          description: Unique id of the entity.
        type:
          type:
          - string
          - 'null'
          description: Type of the resource.
      additionalProperties: false
      description: A domain entity exposed by the API, identified by a unique id.
    EntityResourceOutcomePartnerBillingReportStatusV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/EntityResourcePartnerBillingReportStatusV1'
        errors:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Errors that occured during this call.
          readOnly: true
        warnings:
          type:
          - array
          - 'null'
          items:
            $ref: '#/components/schemas/SdkApiRestCommonProblem'
          description: Warnings that occured during this call.
          readOnly: true
      additionalProperties: false
      description: A top-level object that encapsulates a Criteo API response for a single entity.
    PartnerBillingReportRequestV1:
      required:
      - endDate
      - startDate
      type: object
      properties:
        accountIds:
          minItems: 1
          type:
          - array
          - 'null'
          items:
            type: string
          description: On which accounts the report is created.
        endDate:
          type: string
          description: End date of the report (ISO 8601 format, e.g. YYYY-MM-DD).
          format: date
        format:
          enum:
          - json
          - csv
          type: string
          description: Format type of the report.
          default: json
        retailerIds:
          minItems: 1
          type:
          - array
          - 'null'
          items:
            type: integer
            format: int32
          description: On which retailers the report is created.
        startDate:
          type: string
          description: Start date of the report (ISO 8601 format, e.g. YYYY-MM-DD).
          format: date
      additionalProperties: false
      description: The request object of a Partner Billing Report.
    PartnerBillingReportStatusV1:
      required:
      - createdAt
      - status
      type:
      - object
      - 'null'
      properties:
        createdAt:
          type: string
          description: The date when the report request is created.
          format: date-time
        errorMessage:
          type:
          - string
          - 'null'
          description: Possible error message along with the status.
        status:
          enum:
          - pending
          - success
          - failed
          - expired
          type: string
          description: Status of the report.
      additionalProperties: false
      description: Status info of a Partner Billing Report.
    ValueResourceInputPartnerBillingReportRequestV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/ValueResourcePartnerBillingReportRequestV1'
      additionalProperties: false
      description: A top-level object that encapsulates a Criteo API request for a single value object.
    ValueResourcePartnerBillingReportRequestV1:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/PartnerBillingReportRequestV1'
        type:
          type:
          - string
          - 'null'
          description: Type of the resource.
      additionalProperties: false
      description: A value resource exposed by the API.
    SdkApiRestCommonProblem:
      type: object
      properties:
        code:
          type:
          - string
          - 'null'
          description: A machine-readable error code, expressed as a string value.
        detail:
          type:
          - string
          - 'null'
          description: A human-readable explanation specific to this occurrence of the problem.
        instance:
          type:
          - string
          - 'null'
          description: A URI that identifies the specific occurrence of the problem.
        source:
          type:
          - object
          - 'null'
          additionalProperties:
            type: string
          description: A machine-readable structure to reference to the exact location(s) causing the error(s).
        stackTrace:
          type:
          - string
          - 'null'
          description: ''
        title:
          type:
          - string
          - 'null'
          description: A short human-readable description of the problem type.
        traceId:
          type:
          - string
          - 'null'
          description: The request correlation ID this problem comes from.
        type:
          enum:
          - unknown
          - access-control
          - authentication
          - authorization
          - availability
          - deprecation
          - quota
          - validation
          type:
          - string
          - 'null'
          description: The problem's category.
      additionalProperties: false
      description: Common problem object.
  securitySchemes:
    oauth:
      type: oauth2
      flows:
        clientCredentials:
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
        authorizationCode:
          authorizationUrl: https://api.criteo.com/oauth2
          tokenUrl: https://api.criteo.com/oauth2/token
          scopes: {}
x-samples-languages:
- java
- python
- php
- csharp
- javascript
- curl
- ruby