# Selectra API Store > Selectra API Store (api.selectra.com) sells self-service access to energy-market and > subscription data APIs: forward-looking electricity price planning worldwide, IBAN / BIC > validation across SEPA and the UK, and electricity & gas offer comparison for France. The flow is always the same: create an account, subscribe to a service, mint an API token, then call the REST endpoints. Every endpoint lives under `https://api.selectra.com/api` and authenticates with `Authorization: Bearer `. Tokens are scoped to a single service — a Comparator token returns 403 on a Planning endpoint. Billing runs through Stripe: the Electricity Planning API is priced per covered country (or as a Europe bundle) plus a graduated per-request meter; Comparator and IBAN are flat subscriptions. Selectra is the parent company; the API Store exposes the same market data that powers its consumer energy-comparison sites. Market data is licensed (EPEX Spot, GSE) or used under authorisation (OMIE/OMIP, JEPX), so no extra market-operator licence fee is owed on top of the API subscription. ## Start here - [API catalogue](https://api.selectra.com/): Home page listing every published API with a one-line description and its pricing entry point. - [FAQ](https://api.selectra.com/faq): How to get access, what an API call is, data reliability, tax treatment of returned prices, personal-data handling, support. - [Create an account](https://api.selectra.com/registration): Self-service signup; a team is created for you and invitations can be sent to colleagues. - [Free Electricity Planning access](https://api.selectra.com/electricity_planning/free): Sign up, verify your email, and a token is issued on the spot — 60 API calls a month, every covered market, no card. - [Service status](https://status.selectra.com): Live availability of each API and the history of past incidents and maintenances. Check this before reporting an outage; 5xx responses also carry it as a `status_page` field. - [Sitemap](https://api.selectra.com/sitemap.xml): Every indexable page, including one page per covered electricity market. ## Electricity Planning API - [Service page](https://api.selectra.com/electricity_planning): What it does, live coverage map, per-country price list and checkout. - [Features](https://api.selectra.com/electricity_planning/features): Questionnaire-driven qualification, feed-in (sell-back) tariffs for prosumers, priced windows in the past. - [Documentation and playground](https://api.selectra.com/electricity_planning/docs): Guided walkthrough of the three endpoints with a live request builder. - [OpenAPI reference](https://api.selectra.com/electricity_planning/reference): Swagger UI over the full OpenAPI 3.0 specification. - [Raw OpenAPI 3.0 spec](https://api.selectra.com/electricity_planning/openapi.json): Machine-readable spec, importable into Postman, code generators and agents. - [Pricing](https://api.selectra.com/electricity_planning/pricing): How per-country subscriptions and per-request metering combine, with live Stripe figures. - [Free plan](https://api.selectra.com/electricity_planning/free): The free tier — 60 calls per calendar month, all markets, all three endpoints. Responses carry `X-Quota-Remaining`; past the limit the API answers 429 with an `upgrade_url`. - [Why prices vary through the day](https://api.selectra.com/electricity_planning/why): Why the gap between spot price and socket price is not constant, and how the API models it. Endpoints (all `POST`, all under `https://api.selectra.com/api`): `/planning/qualification` asks what still needs to be known about a customer's situation, `/planning/prices` returns the resulting price planning, `/planning/details` returns the offer detail behind a planning. Per-market pages are `/electricity_planning/{country_code}`, lowercase (`/electricity_planning/fr`, `/electricity_planning/uk`). ## Comparator API (France) - [Service page](https://api.selectra.com/comparator): Electricity and natural-gas offers and prices for French domestic customers, with pricing and checkout. - [Documentation](https://api.selectra.com/comparator/docs): Endpoint reference and payload examples. Endpoints: `GET /api/comparator/v2/offers` (list offers), `GET /api/comparator/v2/offer/{offerId}` (one offer including prices), `GET /api/comparator/compare`. ## IBAN API - [Service page](https://api.selectra.com/iban): Validate an IBAN or a UK account number / sort code and get back the BIC and bank name, in every SEPA country. - [Documentation](https://api.selectra.com/iban/docs): Endpoint reference and payload examples. Endpoint: `GET` or `POST /api/iban/getbic`. ## Optional - [Roadmap](https://api.selectra.com/electricity_planning/roadmap): Market coverage today and the path to 180 countries by end of 2026. - [Dynamic offers index](https://api.selectra.com/electricity_planning/offers/dynamic): Public index of the dynamic-pricing offers currently modelled. - [Home Assistant free tier](https://api.selectra.com/ha/register): Registration path granting Home Assistant users a free Electricity Planning token. - [Terms and conditions](https://api.selectra.com/terms-of-service): Conforming use of the API, billing, cancellation, data security, guarantee and ownership of the data. - Support: api@selectra.info for account and billing questions; integration help on the Electricity Planning API is offered directly by the product team.