Land Insight Renewable Energy Planning DB API

Endpoint to get details on sites from the Renewable Energy Planning Database

Operations 3

GET /renewable_energy_planning_db/{repd_id} Details about a single Renewable Energy Planning DB site #
POST /renewable_energy_planning_db Bulk - Details about Renewable Energy Planning DB sites #
POST /renewable_energy_planning_db/lite Bulk - Details about Renewable Energy Planning DB sites (without geometry) #

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/land-insight-renewable-energy-planning-db-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

land-insight-renewable-energy-planning-db-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: LandTech Additional Opportunities Renewable Energy Planning DB API
  description: 'Search for land parcels and retrieve detailed insights on ownership, planning applications and property details.

    '
  version: 0.3.0
servers:
- url: https://app.land.tech/api
  description: LandTech API Service
security:
- ApiKeyAuth: []
tags:
- name: Renewable Energy Planning DB
  description: Endpoint to get details on sites from the Renewable Energy Planning Database
paths:
  /renewable_energy_planning_db/{repd_id}:
    get:
      operationId: getRepd
      description: Given a Renewable Energy Planning DB ID, get details about a single Renewable Energy Planning DB site
      summary: Details about a single Renewable Energy Planning DB site
      tags:
      - Renewable Energy Planning DB
      parameters:
      - name: repd_id
        required: true
        in: path
        description: ID for a specific Renewable Energy Planning DB site
        schema:
          $ref: '#/components/schemas/RepdID'
      responses:
        '200':
          description: Details about a single site from the Renewable Energy Planning DB
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepdFeature'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
  /renewable_energy_planning_db:
    post:
      operationId: getRepds
      description: Given a set of Renewable Energy Planning DB IDs, get details about Renewable Energy Planning DB sites in bulk
      summary: Bulk - Details about Renewable Energy Planning DB sites
      tags:
      - Renewable Energy Planning DB
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - ids
              properties:
                ids:
                  type: array
                  description: List of Renewable Energy Planning DB IDs (max 50)
                  maxItems: 50
                  items:
                    type: string
                    example: 123e4567-e89b-12d3-a456-426614174000
      responses:
        '200':
          description: Details about Renewable Energy Planning DB sites
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepdFeatureCollection'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
  /renewable_energy_planning_db/lite:
    post:
      operationId: getRepdsLite
      description: Given a set of Renewable Energy Planning DB IDs, get details about Renewable Energy Planning DB sites in bulk without geometry data
      summary: Bulk - Details about Renewable Energy Planning DB sites (without geometry)
      tags:
      - Renewable Energy Planning DB
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - ids
              properties:
                ids:
                  type: array
                  description: List of Renewable Energy Planning DB IDs (max 50)
                  maxItems: 50
                  items:
                    type: string
                    example: 123e4567-e89b-12d3-a456-426614174000
      responses:
        '200':
          description: Details about Renewable Energy Planning DB sites (without geometry)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/RepdFeatureCollectionLite'
        '403':
          description: Forbidden
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Forbidden'
components:
  schemas:
    PolygonCoordinates:
      type: array
      items:
        $ref: '#/components/schemas/LinearRingCoordinates'
    Features:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/FeatureData'
    RepdID:
      type: string
      format: uuid
      description: A REPD ID in the form of a UUID.
      example: 947fa210-e051-4256-829e-5f3de5bacbd3
    FeatureBaseLite:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type:
          - string
          - 'null'
        type:
          type: string
        attributes:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              value:
                type: string
          description: Attributes containing any additional details about the feature
    RepdFeatureCollectionLite:
      allOf:
      - $ref: '#/components/schemas/FeaturesLite'
      - type: object
        properties:
          data:
            properties:
              features:
                type: array
                items:
                  $ref: '#/components/schemas/RepdFeatureItem'
    Forbidden:
      oneOf:
      - type: object
        required:
        - user
        properties:
          user:
            type: object
            required:
            - state
            properties:
              state:
                type: string
                enum:
                - expired
                - blocked
                example: expired
      - type: object
        required:
        - message
        properties:
          message:
            type: string
            example: User not found
    MultiPolygon:
      description: GeoJSON MultiPolygon
      externalDocs:
        url: https://datatracker.ietf.org/doc/html/rfc7946
      type: object
      required:
      - type
      - coordinates
      properties:
        type:
          type: string
          enum:
          - MultiPolygon
          example: MultiPolygon
          description: the geometry type
        coordinates:
          type: array
          items:
            $ref: '#/components/schemas/PolygonCoordinates'
    FeatureDataLite:
      type: object
      properties:
        features:
          type: array
          items:
            $ref: '#/components/schemas/FeatureBaseLite'
    FeaturesLite:
      type: object
      properties:
        data:
          $ref: '#/components/schemas/FeatureDataLite'
    FeatureBase:
      type: object
      properties:
        id:
          type: string
          format: uuid
        name:
          type:
          - string
          - 'null'
        type:
          type: string
        attributes:
          type: array
          items:
            type: object
            properties:
              key:
                type: string
              value:
                type: string
          description: Attributes containing any additional details about the feature
        geometries:
          type: array
          description: Array of geometries relating to the feature
          items:
            type: object
            properties:
              area_hectares:
                type:
                - number
                - 'null'
                format: float
                example: 0.2023428
              geometry:
                type: object
                description: GeoJSON of the feature.
                oneOf:
                - $ref: '#/components/schemas/Polygon'
                - $ref: '#/components/schemas/MultiPolygon'
    RepdFeatureItem:
      type: object
      properties:
        id:
          $ref: '#/components/schemas/RepdID'
        type:
          example: repd_wind
        name:
          example: Loganswell Farm
        attributes:
          example:
          - key: planning_authority
            value: East Renfrewshire Council
          - key: planning_application_submitted
            value: 15/04/2014
          - key: planning_application_withdrawn
            value: 18/09/2014
          - key: abc_planning_application_reference
            value: 2014/0250/TP
          - key: number_of_turbines
            value: '66'
          - key: abc_development_status
            value: Planning Application Withdrawn
          - key: abc_installed_capacity_(mw)
            value: '16'
          - key: a_site_name
            value: Loganswell Farm
          - key: turbine_capacity_(mw)
            value: '0.25'
          - key: a_technology_type
            value: Wind Onshore
          - key: ab_operator_or_applicant
            value: Lifetime Energy
          - key: abc_site_address
            value: Land At Loganswell Farm 443 Ayr Road Loganswell East Renfrewshire G77 6RY
          - key: reference
            value: '4396'
          - key: last_updated
            value: 01/09/2014
    RepdFeature:
      allOf:
      - $ref: '#/components/schemas/Feature'
      - type: object
        properties:
          data:
            properties:
              feature:
                $ref: '#/components/schemas/RepdFeatureItem'
    PointCoordinates:
      type: array
      maxItems: 2
      minItems: 2
      example:
      - -0.12755
      - 51.5073
      items:
        type: number
    Feature:
      type: object
      properties:
        data:
          type: object
          properties:
            feature:
              $ref: '#/components/schemas/FeatureBase'
    RepdFeatureCollection:
      allOf:
      - $ref: '#/components/schemas/Features'
      - type: object
        properties:
          data:
            properties:
              features:
                type: array
                items:
                  $ref: '#/components/schemas/RepdFeatureItem'
    FeatureData:
      type: object
      properties:
        features:
          type: array
          items:
            $ref: '#/components/schemas/FeatureBase'
    Polygon:
      externalDocs:
        url: https://datatracker.ietf.org/doc/html/rfc7946
      type: object
      required:
      - type
      - coordinates
      properties:
        type:
          type: string
          enum:
          - Polygon
          example: Polygon
          description: the geometry type
        coordinates:
          $ref: '#/components/schemas/PolygonCoordinates'
    LinearRingCoordinates:
      type: array
      minItems: 4
      items:
        $ref: '#/components/schemas/PointCoordinates'
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key