ClimateAI Report API

report related operations

Operations 4

POST /report/ Creates a new report #
GET /report/ Gets all accounts #
DELETE /report/{report_id} Disables an account #
GET /report/{report_id} Gets a specific account by its id #

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/climateai-report-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

climateai-report-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: ClimateAI Platform Report API
  version: '1.0'
  description: ClimateAI authentication and routing gateway for platform services
servers:
- url: /
security:
- jwt: []
tags:
- name: report
  description: report related operations
paths:
  /report/:
    post:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/report_response'
        '500':
          description: Error creating report
        '201':
          description: Successfully created new account.
      summary: Creates a new report
      operationId: Create custom report
      tags:
      - report
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/report_payload'
        required: true
    get:
      responses:
        '200':
          description: Successfully retrieved accounts.
        '500':
          description: Error retrieving accounts.
      summary: Gets all accounts
      operationId: Retrieve all custom reports
      tags:
      - report
  /report/{report_id}:
    parameters:
    - name: report_id
      in: path
      required: true
      schema:
        type: string
    delete:
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/report_response'
        '500':
          description: Error deleting report.
        '404':
          description: No report with given ID found.
        '204':
          description: Report successfully deleted.
      summary: Disables an account
      operationId: Delete report by id
      tags:
      - report
    get:
      responses:
        '200':
          description: Successfully retrieved report.
        '500':
          description: Error retrieving report.
        '404':
          description: No report with given ID found.
      summary: Gets a specific account by its id
      operationId: Retrieve report by id
      tags:
      - report
components:
  schemas:
    report_response:
      required:
      - created_at
      - description
      - id
      - name
      - updated_at
      - url
      properties:
        id:
          type: string
          description: Report id
        created_at:
          type: string
          description: created timestamp
        updated_at:
          type: string
          description: last updated timestamp
        account_id:
          type: string
          description: Custom report account.
        name:
          type: string
          description: Custom report name.
        description:
          type: string
          description: Custom report description.
        url:
          type: string
          description: URL to custom report.
        type:
          type: string
          description: Custom report type.
          example: image
          enum:
          - image
          - pdf
          - url
      type: object
    report_payload:
      required:
      - description
      - name
      - url
      properties:
        account_id:
          type: string
          description: Custom report account.
        name:
          type: string
          description: Custom report name.
        description:
          type: string
          description: Custom report description.
        url:
          type: string
          description: URL to custom report.
        type:
          type: string
          description: Custom report type.
          example: image
          enum:
          - image
          - pdf
          - url
      type: object
  securitySchemes:
    jwt:
      type: apiKey
      in: header
      name: Authorization
    apikey:
      type: apiKey
      in: header
      name: X-Api-Key