Altruistiq · Capability

Altruistiq Datasource API — Emissions Export

Altruistiq Datasource API — Emissions Export. Create filterable exports of calculated corporate emissions and retrieve their status and download URLs.

Altruistiq Datasource API — Emissions Export is a Naftiko capability published by Altruistiq, one of 9 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/export.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Create An Export. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Altruistiq, Export, Emissions, and Reporting.

Run with Naftiko AltruistiqExportEmissionsReporting

What You Can Do

POST
Createexport
/v1/export
GET
Getexport
/v1/export/{exportId}

MCP Tools

altruistiq-create-export

Create An Export

altruistiq-get-export

Get Export Status And Download Urls

read-only idempotent

Capability Spec

export.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Altruistiq Datasource API — Emissions Export
  description: >-
    Altruistiq Datasource API — Emissions Export. Create filterable exports of
    calculated corporate emissions and retrieve their status and download URLs.
  tags:
    - Altruistiq
    - Export
    - Emissions
    - Reporting
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
  - namespace: env
    keys:
      ALTRUISTIQ_ACCESS_TOKEN: ALTRUISTIQ_ACCESS_TOKEN
capability:
  consumes:
    - type: http
      namespace: export
      baseUri: https://app.altruistiq.com/api/public/v1
      description: Altruistiq Export operations.
      resources:
        - name: export
          path: /export
          operations:
            - name: createExport
              method: POST
              description: Create An Export
              outputRawFormat: json
              inputParameters:
                - name: body
                  in: body
                  type: object
                  required: true
              outputParameters:
                - name: result
                  type: object
                  value: $.
        - name: export-by-id
          path: /export/{exportId}
          operations:
            - name: getExport
              method: GET
              description: Get Export Status And Download Urls
              outputRawFormat: json
              outputParameters:
                - name: result
                  type: object
                  value: $.
      authentication:
        type: bearer
        value: '{{env.ALTRUISTIQ_ACCESS_TOKEN}}'
        placement: header
  exposes:
    - type: rest
      namespace: export-rest
      port: 8080
      resources:
        - path: /v1/export
          name: export
          operations:
            - method: POST
              name: createExport
              call: export.createExport
              with:
                body: rest.body
        - path: /v1/export/{exportId}
          name: export-by-id
          operations:
            - method: GET
              name: getExport
              call: export.getExport
    - type: mcp
      namespace: export-mcp
      port: 9090
      transport: http
      tools:
        - name: altruistiq-create-export
          description: Create An Export
          hints:
            readOnly: false
            destructive: false
            idempotent: false
          call: export.createExport
          with:
            body: tools.body
        - name: altruistiq-get-export
          description: Get Export Status And Download Urls
          hints:
            readOnly: true
            destructive: false
            idempotent: true
          call: export.getExport