Enedis Data-Connect

Fournisseurs de services énergétiques, nous mettons à votre disposition différents services de données pour vous aider dans votre activité.

Go to site
Explore
/
Apps
/
Enedis Data-Connect

Enedis Data-Connect API Integrations

Build and run workflows using the Enedis Data-Connect API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The Enedis Data-Connect API allows developers to access data from the French electricity grid. This data can be used to build applications that help manage the electricity grid, plan for power outages, and more.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    enedis: {
      type: "app",
      app: "enedis",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://ext.hml.api.enedis.fr/metering_data_dcmp/v5/daily_consumption_max_power`,
      headers: {
        Authorization: `Bearer ${this.enedis.$auth.oauth_access_token}`,
      },
      params: {
        start: `  `,
        end: ``,
        usage_points_id: ``,
      },
    })
  },
})

Choose an API to Connect with Enedis Data-Connect API

1
-
12
of
1000+
apps by most popular

Get Address with Enedis Data-Connect API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Enedis Data-Connect
 
Try it
Get Address with Enedis Data-Connect API on New Submission from Typeform API
Typeform + Enedis Data-Connect
 
Try it
Get Address with Enedis Data-Connect API on Custom Events from Zoom API
Zoom + Enedis Data-Connect
 
Try it
Get Address with Enedis Data-Connect API on New Submission (Instant) from Jotform API
Jotform + Enedis Data-Connect
 
Try it
Get Address with Enedis Data-Connect API on New Custom Webhook Events from Stripe API
Stripe + Enedis Data-Connect
 
Try it
Get Address with the Enedis Data-Connect API

Returns the address of a client. See the docs here

 
Try it
Get Consumption Load Curve with the Enedis Data-Connect API

Returns the daily average power consumed in W, on a given interval (by default 30 minutes). See the docs here

 
Try it
Get Contact with the Enedis Data-Connect API

Returns the contact informations of a client. See the docs here

 
Try it
Get Contracts with the Enedis Data-Connect API

Returns the contract informations of a client. See the docs here

 
Try it
Get Daily Consumption with the Enedis Data-Connect API

Returns the daily consumption in Wh. See the docs here

 
Try it

Authentication

Enedis Data-Connect uses OAuth authentication. When you connect your Enedis Data-Connect account, Pipedream will open a popup window where you can sign into Enedis Data-Connect and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Enedis Data-Connect API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. accessToken
    POSThttps://ext.hml.api.enedis.fr/oauth2/v3/token?redirect_uri={{oauth.redirect_uri}}content-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&grant_type=client_credentials
  2. refreshToken
    POSThttps://ext.hml.api.enedis.fr/oauth2/v3/tokencontent-type: application/x-www-form-urlencodedaccept: application/json
    client_id={{custom_fields.client_id}}&client_secret={{custom_fields.client_secret}}&grant_type=client_credentials