Confident Cannabis Client Info API

Client organization information

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/confident-cannabis-client-info-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

confident-cannabis-client-info-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Clients Client Info API
  version: 0.16.0
  description: API endpoints for clients to view their orders, samples, and associated labs. All endpoints are read-only (GET) and accessible only with client API credentials.
  contact:
    name: Confident Cannabis API Support
    url: https://www.confidentcannabis.com
servers:
- url: https://api.confidentcannabis.com
  description: Production server
security:
- ApiKeyAuth: []
tags:
- description: Client organization information
  name: Client Info
paths:
  /v0/clients/client:
    get:
      summary: Get current client information
      description: Returns information about the authenticated client organization.
      operationId: getClient
      tags:
      - Client Info
      security:
      - ApiKeyAuth: []
      responses:
        '200':
          description: Successful response with client details
          content:
            application/json:
              schema:
                type: object
                required:
                - success
                - client
                properties:
                  success:
                    type: boolean
                    example: true
                  client:
                    type: object
                    description: Detailed information about a client organization
                    required:
                    - id
                    - name
                    - training
                    - last_modified
                    properties:
                      id:
                        type: integer
                        description: Unique client ID
                        example: 123
                      name:
                        type: string
                        description: Organization name
                        example: Green Valley Dispensary
                      email:
                        type: string
                        format: email
                        description: Organization email
                        example: contact@greenvalley.com
                      phone:
                        type: string
                        description: Organization phone number
                        example: (555) 123-4567
                      url:
                        type: string
                        format: uri
                        description: Organization website
                        example: https://greenvalley.com
                      training:
                        type: boolean
                        description: Whether this is a training/demo client
                        example: false
                      last_modified:
                        type: string
                        format: date-time
                        description: Last modification timestamp
                        example: '2025-01-15T10:30:00Z'
                      primary_address:
                        type: object
                        description: Physical address
                        properties:
                          street:
                            type: string
                            example: 123 Main St
                          city:
                            type: string
                            example: Denver
                          state:
                            type: string
                            example: CO
                          zip:
                            type: string
                            example: '80202'
                          country:
                            type: string
                            example: USA
                      licenses:
                        type: array
                        description: Business licenses
                        items:
                          type: object
                          description: Business license information
                          properties:
                            license_number:
                              type: string
                              example: MED-12345
                            license_type:
                              type: string
                              example: Medical Marijuana Dispensary
                            state:
                              type: string
                              example: CO
                            expiration_date:
                              type: string
                              format: date
                              example: '2026-12-31'
              examples:
                success:
                  summary: Successful client response
                  value:
                    success: true
                    client:
                      id: 123
                      name: Green Valley Dispensary
                      email: contact@greenvalley.com
                      phone: (555) 123-4567
                      url: https://greenvalley.com
                      training: false
                      last_modified: '2025-01-15T10:30:00Z'
                      primary_address:
                        street: 123 Main St
                        city: Denver
                        state: CO
                        zip: '80202'
                        country: USA
                      licenses:
                      - license_number: MED-12345
                        license_type: Medical Marijuana Dispensary
                        state: CO
                        expiration_date: '2026-12-31'
        '401':
          description: Authentication failed
          content:
            application/json:
              schema:
                type: object
                description: Error response
                required:
                - success
                - error_code
                - error_message
                properties:
                  success:
                    type: boolean
                    example: false
                  error_code:
                    type: string
                    example: missing_api_key
                  error_message:
                    type: string
                    example: Missing API key header
                  error_details:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        type: string
        '403':
          description: Access denied
          content:
            application/json:
              schema:
                type: object
                description: Error response
                required:
                - success
                - error_code
                - error_message
                properties:
                  success:
                    type: boolean
                    example: false
                  error_code:
                    type: string
                    example: permission_denied
                  error_message:
                    type: string
                    example: Access denied
                  error_details:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        type: string
components:
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-ConfidentCannabis-APIKey
      description: API key for authentication. Required for all requests.