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

# Get Flow Price Scatter

> Get power flow vs. price correlation (scatter plot data).

Datetime params accept ISO 8601 or relative shorthand (now, now-30d, now-1H, etc.).
All datetimes resolve to UTC. Response meta includes resolved_datetime_from/to.
Default range: now-30d to now. Returns envelope with data array.

resolution: 1H, 1D, 1W, native, or auto. Default: auto (server picks
based on range width; native forces raw data regardless of range).



## OpenAPI

````yaml https://api.voltpath.ai/openapi.json get /api/v1/flow-price-scatter
openapi: 3.1.0
info:
  title: Voltpath API
  version: 1.0.0
servers: []
security: []
paths:
  /api/v1/flow-price-scatter:
    get:
      tags:
        - entsoe
      summary: Get Flow Price Scatter
      description: >-
        Get power flow vs. price correlation (scatter plot data).


        Datetime params accept ISO 8601 or relative shorthand (now, now-30d,
        now-1H, etc.).

        All datetimes resolve to UTC. Response meta includes
        resolved_datetime_from/to.

        Default range: now-30d to now. Returns envelope with data array.


        resolution: 1H, 1D, 1W, native, or auto. Default: auto (server picks

        based on range width; native forces raw data regardless of range).
      operationId: get_flow_price_scatter_api_v1_flow_price_scatter_get
      parameters:
        - name: datetime_from
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            default: now-30d
            title: Datetime From
        - name: datetime_to
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            default: now
            title: Datetime To
        - name: zone
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            title: Zone
        - name: border
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                type: array
              - type: 'null'
            description: Border pairs as 'ZONE_FROM->ZONE_TO', e.g. 'DE->FR'
            title: Border
          description: Border pairs as 'ZONE_FROM->ZONE_TO', e.g. 'DE->FR'
        - name: resolution
          in: query
          required: false
          schema:
            enum:
              - auto
              - native
              - 1H
              - 1D
              - 1W
            type: string
            default: auto
            title: Resolution
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Envelope_list_FlowPriceScatterRow__'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    Envelope_list_FlowPriceScatterRow__:
      properties:
        meta:
          $ref: '#/components/schemas/Meta'
        data:
          items:
            $ref: '#/components/schemas/FlowPriceScatterRow'
          type: array
          title: Data
      additionalProperties: false
      type: object
      required:
        - meta
        - data
      title: Envelope[list[FlowPriceScatterRow]]
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    Meta:
      properties:
        provenance:
          type: string
          enum:
            - measured
            - derived
          title: Provenance
        upstream_sources:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Upstream Sources
        resolved_datetime_from:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved Datetime From
        resolved_datetime_to:
          anyOf:
            - type: string
              format: date-time
            - type: 'null'
          title: Resolved Datetime To
        resolution:
          anyOf:
            - type: string
            - type: 'null'
          title: Resolution
      additionalProperties: false
      type: object
      required:
        - provenance
      title: Meta
    FlowPriceScatterRow:
      properties:
        bidding_zone_from:
          type: string
          title: Bidding Zone From
        bidding_zone_to:
          type: string
          title: Bidding Zone To
        net_flow_mw:
          type: number
          title: Net Flow Mw
        price_delta:
          type: number
          title: Price Delta
        count:
          type: integer
          title: Count
      additionalProperties: false
      type: object
      required:
        - bidding_zone_from
        - bidding_zone_to
        - net_flow_mw
        - price_delta
        - count
      title: FlowPriceScatterRow
      description: Per-border (flow, price difference) point.
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````