TetraScience Data App Providers API

The Data App Providers API from TetraScience — 3 operation(s) for data app providers.

Operations 6

POST /v1/dataapps/providers Create a new Data App Provider #
GET /v1/dataapps/providers Fetch all data app providers #
DELETE /v1/dataapps/providers/{id} Delete a Data App Provider #
GET /v1/dataapps/providers/{id} Fetch a Data App Provider #
PUT /v1/dataapps/providers/{id} Update a Data App Provider #
GET /v1/dataapps/providers/templates Fetch all data app provider templates #

Documentation

Specifications

Other Resources

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/tetrascience-data-app-providers-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

tetrascience-data-app-providers-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: TetraScience Data and AI Cloud Access Groups Data App Providers API
  version: '4.0'
  description: Programmatic access to the TetraScience Scientific Data and AI Platform — manage tenants, organizations, users, roles, agents, integrations, pipelines, files, datasets, schemas, and search across the Tetra Data Platform.
  contact:
    name: TetraScience
    url: https://www.tetrascience.com/
  license:
    name: Proprietary
servers:
- url: https://api.tetrascience.com
  description: Production Server
- url: https://api.tetrascience-uat.com
  description: User Acceptance Server
- url: https://api.tetrascience-dev.com
  description: Development Server
- url: https://api.tetrascience-uat.com
  description: User Acceptabce Server
- url: api.tetrascience.com
security:
- token: []
  orgSlug: []
- orgSlug: []
  tsAuthToken: []
tags:
- name: Data App Providers
paths:
  /v1/dataapps/providers:
    post:
      summary: Create a new Data App Provider
      tags:
      - Data App Providers
      operationId: create-a-data-app-provider
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: The type of provider. Must be a selection from provider templates.
                name:
                  type: string
                  description: The unique name of this provider
                orgId:
                  type: string
                  description: Organization ID
                iconUrl:
                  type: string
                  description: The URL to the icon image
                secrets:
                  type: array
                  description: The secrets to associate with this provider
                  items:
                    type: object
                    properties:
                      name:
                        type: string
                      value:
                        type: string
                      isExistingSecret:
                        type: boolean
      responses:
        '201':
          description: OK
        '400':
          description: Bad Request
        '503':
          description: Service Unavailable
    get:
      summary: Fetch all data app providers
      tags:
      - Data App Providers
      operationId: fetch-data-app-providers
      parameters:
      - name: limit
        in: query
        required: false
        schema:
          type: integer
          default: 10
          minimum: 1
          maximum: 100
        description: Maximum number of items to return
      - name: page
        in: query
        required: false
        schema:
          type: integer
          default: 1
          minimum: 1
        description: Page number for pagination (starts from 1)
      - name: providerName
        in: query
        required: false
        schema:
          type: string
        description: The name of the provider to filter on
      - name: orgId
        in: query
        required: true
        schema:
          type: string
      - name: includeArn
        in: query
        required: false
        schema:
          type: boolean
          default: false
        description: Indicate if the secret ARNs should be included in the response
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PaginatedDataAppProvider'
        '400':
          description: Bad Request
        '503':
          description: Service Unavailable
  /v1/dataapps/providers/{id}:
    delete:
      summary: Delete a Data App Provider
      tags:
      - Data App Providers
      operationId: delete-a-data-app-provider
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: OK
        '503':
          description: Service Unavailable
    get:
      summary: Fetch a Data App Provider
      tags:
      - Data App Providers
      operationId: fetch-a-data-app-provider
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      - name: orgId
        in: query
        required: true
        schema:
          type: string
      - name: includeArn
        in: query
        required: false
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataAppProvider'
        '404':
          description: Not Found
        '503':
          description: Service Unavailable
    put:
      summary: Update a Data App Provider
      tags:
      - Data App Providers
      operationId: update-a-data-app-provider
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              type: object
              properties:
                type:
                  type: string
                  description: The type of provider. Must be a selection from provider templates.
                name:
                  type: string
                  description: The unique name of this provider
                orgId:
                  type: string
                  description: Organization ID
                iconUrl:
                  type: string
                  description: The URL to the icon image
                secrets:
                  type: array
                  description: The secrets to associate with this provider
                  items:
                    type: object
                    properties:
                      name:
                        type: string
                      value:
                        type: string
                      isExistingSecret:
                        type: boolean
      responses:
        '200':
          description: OK
        '400':
          description: Bad Request
        '503':
          description: Service Unavailable
  /v1/dataapps/providers/templates:
    get:
      summary: Fetch all data app provider templates
      tags:
      - Data App Providers
      operationId: fetch-data-app-provider-templates
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DataAppProviderTemplate'
        '400':
          description: Bad Request
        '503':
          description: Service Unavailable
components:
  schemas:
    DataAppProvider:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        orgSlug:
          type: string
        type:
          type: string
        iconUrl:
          type: string
        updatedAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
        updatedBy:
          type: string
        createdBy:
          type: string
        secrets:
          type: array
          items:
            $ref: '#/components/schemas/DataAppProviderSecret'
    PaginatedDataAppProvider:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/DataAppProvider'
        count:
          type: integer
    DataAppProviderTemplateField:
      type: object
      properties:
        name:
          type: string
        display:
          type: string
        type:
          type: string
        required:
          type: boolean
    DataAppProviderTemplate:
      type: object
      properties:
        type:
          type: string
        name:
          type: string
        iconUrl:
          type: string
        fields:
          type: array
          items:
            $ref: '#/components/schemas/DataAppProviderTemplateField'
    DataAppProviderSecret:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
        type:
          type: string
        required:
          type: boolean
        arn:
          type: string
        envName:
          type: string
  securitySchemes:
    token:
      type: apiKey
      description: JWT Token for authentication
      in: header
      name: ts-auth-token
    orgSlug:
      type: apiKey
      description: Your organization slug
      in: header
      name: x-org-slug
    tsAuthToken:
      type: apiKey
      in: header
      name: ts-auth-token