> ## Documentation Index
> Fetch the complete documentation index at: https://developers.criteo.com/llms.txt
> Use this file to discover all available pages before exploring further.

# /2025-04/marketing-solutions/audience-segments/estimate-size

> Gets the size estimation of a non existent segment. An error is returned when size calculation is not supported.



## OpenAPI

````yaml https://api.criteo.com/2025-04/marketingsolutions/open-api-specifications.json post /2025-04/marketing-solutions/audience-segments/estimate-size
openapi: 3.0.1
info:
  title: Criteo API
  description: Criteo API - MarketingSolutions
  version: 2025-04
servers:
  - url: https://api.criteo.com
security:
  - oauth: []
tags:
  - name: Advertiser
  - name: Analytics
  - name: Audience
  - name: Campaign
  - name: Creative
  - name: Gateway
paths:
  /2025-04/marketing-solutions/audience-segments/estimate-size:
    post:
      tags:
        - Audience
      summary: /2025-04/marketing-solutions/audience-segments/estimate-size
      description: >-
        Gets the size estimation of a non existent segment. An error is returned
        when size calculation is not supported.
      operationId: EstimateAudienceSegmentsSizes
      requestBody:
        description: ''
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AudienceSegmentEstimateSizeInputV1'
        required: true
        x-bodyName: request
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AudienceSegmentSizeEstimationV1Response'
      security:
        - oauth:
            - MarketingSolutions_Audience_Manage
components:
  schemas:
    AudienceSegmentEstimateSizeInputV1:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AudienceSegmentSizeEstimationEntityV1Resource'
      description: Input to estimate the size of an audience segment..
    AudienceSegmentSizeEstimationV1Response:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/AudienceSegmentSizeEstimationV1Resource'
        errors:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
        warnings:
          type: array
          items:
            $ref: '#/components/schemas/CommonProblem'
          nullable: true
          readOnly: true
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        value
    AudienceSegmentSizeEstimationEntityV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/AudienceSegmentSizeEstimationEntityV1'
        type:
          type: string
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        value
    AudienceSegmentSizeEstimationV1Resource:
      type: object
      properties:
        attributes:
          $ref: '#/components/schemas/AudienceSegmentSizeEstimationV1'
        type:
          type: string
          nullable: true
      description: >-
        A top-level object that encapsulates a Criteo API response for a single
        value
      nullable: true
    CommonProblem:
      type: object
      properties:
        code:
          type: string
          description: A machine-readable error code, expressed as a string value.
          nullable: true
        detail:
          type: string
          description: >-
            A human-readable explanation specific to this occurrence of the
            problem
          nullable: true
        instance:
          type: string
          description: A URI that identifies the specific occurrence of the problem.
          nullable: true
        source:
          type: object
          additionalProperties:
            type: string
          description: >-
            A machine-readable structure to reference to the exact location(s)
            causing the error(s)
          nullable: true
        stackTrace:
          type: string
          nullable: true
        title:
          type: string
          description: A short human-readable description of the problem type
          nullable: true
        traceId:
          type: string
          description: The request correlation ID this problem comes from.
          nullable: true
        traceIdentifier:
          type: string
          description: >-
            The request correlation ID this problem comes from. (deprecated, use
            traceId instead)
          nullable: true
        type:
          enum:
            - unknown
            - access-control
            - authentication
            - authorization
            - availability
            - deprecation
            - quota
            - validation
          type: string
          description: The problem's category.
          nullable: true
      description: Common problem object.
    AudienceSegmentSizeEstimationEntityV1:
      required:
        - advertiserId
      type: object
      properties:
        advertiserId:
          type: string
          description: Advertiser associated to the segment
        inMarket:
          $ref: '#/components/schemas/InMarketSizeEstimationV1'
        location:
          $ref: '#/components/schemas/LocationSizeEstimationV1'
      description: Set of rules that defines specific people to target.
    AudienceSegmentSizeEstimationV1:
      type: object
      properties:
        size:
          type: integer
          format: int64
          nullable: true
      description: Segment size estimation
      nullable: true
    InMarketSizeEstimationV1:
      required:
        - country
      type: object
      properties:
        brandIds:
          uniqueItems: true
          type: array
          items:
            type: string
        buyingPower:
          uniqueItems: true
          type: array
          items:
            enum:
              - Low
              - Medium
              - High
              - VeryHigh
            type: string
        country:
          type: string
        gender:
          enum:
            - Male
            - Female
          type: string
        interestIds:
          uniqueItems: true
          type: array
          items:
            type: string
        priceRange:
          uniqueItems: true
          type: array
          items:
            enum:
              - Low
              - Medium
              - High
            type: string
      description: >-
        Settings to target users based on high shopping intents and
        demographics.
    LocationSizeEstimationV1:
      required:
        - pointsOfInterest
        - radiusInKm
      type: object
      properties:
        pointsOfInterest:
          type: array
          items:
            $ref: '#/components/schemas/PointOfInterestV1'
        radiusInKm:
          type: integer
          format: int32
      description: Settings to define your audience based on their location.
    PointOfInterestV1:
      type: object
      properties:
        latitude:
          type: number
          description: ISO-6709 latitude (rounded at 5 decimals)
          format: double
          nullable: true
        longitude:
          type: number
          description: ISO-6709 longitude (rounded at 5 decimals)
          format: double
          nullable: true
        name:
          type: string
          description: Name of the point of interest
          nullable: true
      description: "Named coordinate defined by its latitude and longitude.\r\nLatitude and Longitude are rounded at 5 decimals."
  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: {}

````