PVcase Team API

The Team API from PVcase — 2 operation(s) for team.

Operations 5

GET /api/teams/{teamId} Get Team
PATCH /api/teams/{teamId} Update Team
DELETE /api/teams/{teamId} Delete Team
GET /api/teams Get All Teams
POST /api/teams Create Team

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/pvcase-team-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 email required.

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

OpenAPI Specification

pvcase-team-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Anderson Optimization Team API
  description: API to access AO resources
  version: 1.0.0-beta
servers:
- url: https://core-v1.carbon.prod.andersonopt.com
security:
- basicAuth: []
tags:
- name: Team
paths:
  /api/teams/{teamId}:
    get:
      summary: Get Team
      tags:
      - Team
      description: Get a given team
      parameters:
      - schema:
          type: string
        in: path
        name: teamId
        required: true
        description: A unique identifier for a team, typically in the format of "<company-name>-<state-name>"
      responses:
        '200':
          description: A team is a collection of assets that are associated with a specific company and state
          content:
            application/json:
              schema:
                type: object
                description: A team is a collection of assets that are associated with a specific company and state
                additionalProperties: false
                properties:
                  created:
                    type: integer
                    description: The Unix timestamp of when the Team was created
                  createdBy:
                    type: string
                    description: The user ID that created the Team
                  modified:
                    type: integer
                    description: The Unix timestamp of when the Team was last modified
                  modifiedBy:
                    type: string
                    description: The user ID that last modified the Team
                  meta:
                    type: object
                    description: The metadata for the Team
                    additionalProperties: true
                  member:
                    type: object
                    description: The members of the team
                    additionalProperties: true
                  parameter:
                    type: object
                    description: Team specific data fields
                    additionalProperties: true
                  rn:
                    type: string
                    description: The Resource Path of the Team
                  type:
                    type: string
                    description: The type of Team
                example:
                  created: 1588888888
                  createdBy: user-id
                  modified: 1588888888
                  modifiedBy: user-id
                  meta: {}
                  member: {}
                  parameter: {}
                  rn: team/company-ny
                  type: team
              example:
                created: 1588888888
                createdBy: user-id
                modified: 1588888888
                modifiedBy: user-id
                meta: {}
                member: {}
                parameter: {}
                rn: team/company-ny
                type: team
        '401':
          description: Authorization unsuccessful. See error message for more details
          content:
            application/json:
              schema:
                type: string
                description: Authorization unsuccessful. See error message for more details
                example: Requires Authentication
              example: Requires Authentication
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: string
                description: Resource not found
                example: Resource not found
              example: Resource not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: string
                description: Internal server error
                example: Internal server error
              example: Internal server error
    patch:
      summary: Update Team
      tags:
      - Team
      description: Update a given team from partial JSON
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              properties:
                meta:
                  type: object
                  description: The metadata for the Team
                  additionalProperties: true
                member:
                  type: object
                  description: The members of the team
                  additionalProperties: true
                parameter:
                  type: object
                  description: Team specific data fields
                  additionalProperties: true
      parameters:
      - schema:
          type: string
        in: path
        name: teamId
        required: true
        description: A unique identifier for a team, typically in the format of "<company-name>-<state-name>"
      responses:
        '200':
          description: A team is a collection of assets that are associated with a specific company and state
          content:
            application/json:
              schema:
                type: object
                description: A team is a collection of assets that are associated with a specific company and state
                additionalProperties: false
                properties:
                  created:
                    type: integer
                    description: The Unix timestamp of when the Team was created
                  createdBy:
                    type: string
                    description: The user ID that created the Team
                  modified:
                    type: integer
                    description: The Unix timestamp of when the Team was last modified
                  modifiedBy:
                    type: string
                    description: The user ID that last modified the Team
                  meta:
                    type: object
                    description: The metadata for the Team
                    additionalProperties: true
                  member:
                    type: object
                    description: The members of the team
                    additionalProperties: true
                  parameter:
                    type: object
                    description: Team specific data fields
                    additionalProperties: true
                  rn:
                    type: string
                    description: The Resource Path of the Team
                  type:
                    type: string
                    description: The type of Team
                example:
                  created: 1588888888
                  createdBy: user-id
                  modified: 1588888888
                  modifiedBy: user-id
                  meta: {}
                  member: {}
                  parameter: {}
                  rn: team/company-ny
                  type: team
              example:
                created: 1588888888
                createdBy: user-id
                modified: 1588888888
                modifiedBy: user-id
                meta: {}
                member: {}
                parameter: {}
                rn: team/company-ny
                type: team
        '401':
          description: Authorization unsuccessful. See error message for more details
          content:
            application/json:
              schema:
                type: string
                description: Authorization unsuccessful. See error message for more details
                example: Requires Authentication
              example: Requires Authentication
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: string
                description: Resource not found
                example: Resource not found
              example: Resource not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: string
                description: Internal server error
                example: Internal server error
              example: Internal server error
    delete:
      summary: Delete Team
      tags:
      - Team
      description: Delete a given team
      parameters:
      - schema:
          type: string
        in: path
        name: teamId
        required: true
        description: A unique identifier for a team, typically in the format of "<company-name>-<state-name>"
      responses:
        '200':
          description: A team is a collection of assets that are associated with a specific company and state
          content:
            application/json:
              schema:
                type: object
                description: A team is a collection of assets that are associated with a specific company and state
                additionalProperties: false
                properties:
                  created:
                    type: integer
                    description: The Unix timestamp of when the Team was created
                  createdBy:
                    type: string
                    description: The user ID that created the Team
                  modified:
                    type: integer
                    description: The Unix timestamp of when the Team was last modified
                  modifiedBy:
                    type: string
                    description: The user ID that last modified the Team
                  meta:
                    type: object
                    description: The metadata for the Team
                    additionalProperties: true
                  member:
                    type: object
                    description: The members of the team
                    additionalProperties: true
                  parameter:
                    type: object
                    description: Team specific data fields
                    additionalProperties: true
                  rn:
                    type: string
                    description: The Resource Path of the Team
                  type:
                    type: string
                    description: The type of Team
                example:
                  created: 1588888888
                  createdBy: user-id
                  modified: 1588888888
                  modifiedBy: user-id
                  meta: {}
                  member: {}
                  parameter: {}
                  rn: team/company-ny
                  type: team
              example:
                created: 1588888888
                createdBy: user-id
                modified: 1588888888
                modifiedBy: user-id
                meta: {}
                member: {}
                parameter: {}
                rn: team/company-ny
                type: team
        '401':
          description: Authorization unsuccessful. See error message for more details
          content:
            application/json:
              schema:
                type: string
                description: Authorization unsuccessful. See error message for more details
                example: Requires Authentication
              example: Requires Authentication
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: string
                description: Resource not found
                example: Resource not found
              example: Resource not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: string
                description: Internal server error
                example: Internal server error
              example: Internal server error
  /api/teams:
    get:
      summary: Get All Teams
      tags:
      - Team
      description: Retrieve all user teams
      responses:
        '200':
          description: Default Response
          content:
            application/json:
              schema:
                type: array
                items:
                  type: object
                  description: A team is a collection of assets that are associated with a specific company and state
                  additionalProperties: false
                  properties:
                    created:
                      type: integer
                      description: The Unix timestamp of when the Team was created
                    createdBy:
                      type: string
                      description: The user ID that created the Team
                    modified:
                      type: integer
                      description: The Unix timestamp of when the Team was last modified
                    modifiedBy:
                      type: string
                      description: The user ID that last modified the Team
                    meta:
                      type: object
                      description: The metadata for the Team
                      additionalProperties: true
                    member:
                      type: object
                      description: The members of the team
                      additionalProperties: true
                    parameter:
                      type: object
                      description: Team specific data fields
                      additionalProperties: true
                    rn:
                      type: string
                      description: The Resource Path of the Team
                    type:
                      type: string
                      description: The type of Team
                  example:
                    created: 1588888888
                    createdBy: user-id
                    modified: 1588888888
                    modifiedBy: user-id
                    meta: {}
                    member: {}
                    parameter: {}
                    rn: team/company-ny
                    type: team
        '401':
          description: Authorization unsuccessful. See error message for more details
          content:
            application/json:
              schema:
                type: string
                description: Authorization unsuccessful. See error message for more details
                example: Requires Authentication
              example: Requires Authentication
        '404':
          description: Resource not found
          content:
            application/json:
              schema:
                type: string
                description: Resource not found
                example: Resource not found
              example: Resource not found
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: string
                description: Internal server error
                example: Internal server error
              example: Internal server error
    post:
      summary: Create Team
      tags:
      - Team
      description: Create a team
      requestBody:
        content:
          application/json:
            schema:
              type: object
              additionalProperties: false
              properties:
                meta:
                  type: object
                  description: The metadata for the Team
                  additionalProperties: true
                member:
                  type: object
                  description: The members of the team
                  additionalProperties: true
                parameter:
                  type: object
                  description: Team specific data fields
                  additionalProperties: true
      responses:
        '201':
          description: A team is a collection of assets that are associated with a specific company and state
          content:
            application/json:
              schema:
                type: object
                description: A team is a collection of assets that are associated with a specific company and state
                additionalProperties: false
                properties:
                  created:
                    type: integer
                    description: The Unix timestamp of when the Team was created
                  createdBy:
                    type: string
                    description: The user ID that created the Team
                  modified:
                    type: integer
                    description: The Unix timestamp of when the Team was last modified
                  modifiedBy:
                    type: string
                    description: The user ID that last modified the Team
                  meta:
                    type: object
                    description: The metadata for the Team
                    additionalProperties: true
                  member:
                    type: object
                    description: The members of the team
                    additionalProperties: true
                  parameter:
                    type: object
                    description: Team specific data fields
                    additionalProperties: true
                  rn:
                    type: string
                    description: The Resource Path of the Team
                  type:
                    type: string
                    description: The type of Team
                example:
                  created: 1588888888
                  createdBy: user-id
                  modified: 1588888888
                  modifiedBy: user-id
                  meta: {}
                  member: {}
                  parameter: {}
                  rn: team/company-ny
                  type: team
              example:
                created: 1588888888
                createdBy: user-id
                modified: 1588888888
                modifiedBy: user-id
                meta: {}
                member: {}
                parameter: {}
                rn: team/company-ny
                type: team
        '401':
          description: Authorization unsuccessful. See error message for more details
          content:
            application/json:
              schema:
                type: string
                description: Authorization unsuccessful. See error message for more details
                example: Requires Authentication
              example: Requires Authentication
        '500':
          description: Internal server error
          content:
            application/json:
              schema:
                type: string
                description: Internal server error
                example: Internal server error
              example: Internal server error
components:
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: AO Username and API Token Authentication