Scott Ai probes API
The probes API from Scott Ai — 3 operation(s) for probes.
The probes API from Scott Ai — 3 operation(s) for probes.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/scott-ai-probes-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: One-Shot access Probes API
version: 1.0.0
servers:
- url: https://api.tryscott.ai
description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: probes
paths:
/probes:
post:
tags:
- probes
summary: Create Probe
operationId: create_probe
parameters:
- name: authorization
in: header
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Authorization
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CreateProbeBody'
responses:
'201':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProbeState'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
get:
tags:
- probes
summary: List Probes
operationId: list_probes
parameters:
- name: status
in: query
required: false
schema:
anyOf:
- $ref: '#/components/schemas/ProbeStatus'
- type: 'null'
title: Status
- name: authorization
in: header
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Authorization
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ListProbesResponse'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/probes/{probe_id}:
get:
tags:
- probes
summary: Get Probe
operationId: get_probe
parameters:
- name: probe_id
in: path
required: true
schema:
type: string
title: Probe Id
- name: authorization
in: header
required: false
schema:
anyOf:
- type: string
- type: 'null'
title: Authorization
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProbeWithArtifacts'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
/probes/{probe_id}/review:
post:
tags:
- probes
summary: Review Probe
operationId: review_probe
security:
- HTTPBearer: []
parameters:
- name: probe_id
in: path
required: true
schema:
type: string
title: Probe Id
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/ReviewProbeBody'
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/ProbeState'
'422':
description: Validation Error
content:
application/json:
schema:
$ref: '#/components/schemas/HTTPValidationError'
components:
schemas:
ProbeArtifacts:
properties:
probe_md:
type: string
title: Probe Md
meta_json:
type: string
title: Meta Json
mutant_diff:
type: string
title: Mutant Diff
sentinel_py:
type: string
title: Sentinel Py
type: object
required:
- probe_md
- meta_json
- mutant_diff
- sentinel_py
title: ProbeArtifacts
ProbeWithArtifacts:
properties:
id:
type: string
title: Id
site:
type: string
title: Site
slot:
type: string
title: Slot
subsystem:
type: string
title: Subsystem
status:
$ref: '#/components/schemas/ProbeStatus'
mint_run:
type: string
title: Mint Run
created_at:
type: string
format: date-time
title: Created At
reviewed_by:
anyOf:
- type: string
- type: 'null'
title: Reviewed By
reviewed_at:
anyOf:
- type: string
format: date-time
- type: 'null'
title: Reviewed At
comments:
items:
$ref: '#/components/schemas/ProbeComment'
type: array
title: Comments
artifacts:
$ref: '#/components/schemas/ProbeArtifacts'
type: object
required:
- id
- site
- slot
- subsystem
- status
- mint_run
- created_at
- artifacts
title: ProbeWithArtifacts
ValidationError:
properties:
loc:
items:
anyOf:
- type: string
- type: integer
type: array
title: Location
msg:
type: string
title: Message
type:
type: string
title: Error Type
input:
title: Input
ctx:
type: object
title: Context
type: object
required:
- loc
- msg
- type
title: ValidationError
ReviewProbeBody:
properties:
verdict:
type: string
enum:
- approved
- rejected
title: Verdict
comment:
anyOf:
- type: string
- type: 'null'
title: Comment
type: object
required:
- verdict
title: ReviewProbeBody
CreateProbeBody:
properties:
id:
type: string
title: Id
site:
type: string
title: Site
slot:
type: string
title: Slot
subsystem:
type: string
title: Subsystem
mint_run:
type: string
title: Mint Run
artifacts:
$ref: '#/components/schemas/CreateProbeArtifactsBody'
status:
anyOf:
- $ref: '#/components/schemas/ProbeStatus'
- type: 'null'
created_at:
anyOf:
- type: string
format: date-time
- type: 'null'
title: Created At
type: object
required:
- id
- site
- slot
- subsystem
- mint_run
- artifacts
title: CreateProbeBody
ListProbesResponse:
properties:
probes:
items:
$ref: '#/components/schemas/ProbeState'
type: array
title: Probes
type: object
required:
- probes
title: ListProbesResponse
CreateProbeArtifactsBody:
properties:
probe_md:
type: string
title: Probe Md
meta_json:
type: string
title: Meta Json
mutant_diff:
type: string
title: Mutant Diff
sentinel_py:
type: string
title: Sentinel Py
type: object
required:
- probe_md
- meta_json
- mutant_diff
- sentinel_py
title: CreateProbeArtifactsBody
ProbeState:
properties:
id:
type: string
title: Id
site:
type: string
title: Site
slot:
type: string
title: Slot
subsystem:
type: string
title: Subsystem
status:
$ref: '#/components/schemas/ProbeStatus'
mint_run:
type: string
title: Mint Run
created_at:
type: string
format: date-time
title: Created At
reviewed_by:
anyOf:
- type: string
- type: 'null'
title: Reviewed By
reviewed_at:
anyOf:
- type: string
format: date-time
- type: 'null'
title: Reviewed At
comments:
items:
$ref: '#/components/schemas/ProbeComment'
type: array
title: Comments
type: object
required:
- id
- site
- slot
- subsystem
- status
- mint_run
- created_at
title: ProbeState
ProbeComment:
properties:
author:
type: string
title: Author
verdict:
type: string
enum:
- approved
- rejected
title: Verdict
comment:
anyOf:
- type: string
- type: 'null'
title: Comment
at:
type: string
format: date-time
title: At
type: object
required:
- author
- verdict
- comment
- at
title: ProbeComment
HTTPValidationError:
properties:
detail:
items:
$ref: '#/components/schemas/ValidationError'
type: array
title: Detail
type: object
title: HTTPValidationError
ProbeStatus:
type: string
enum:
- pending-review
- approved
- rejected
title: ProbeStatus
securitySchemes:
HTTPBearer:
type: http
scheme: bearer