{
  "x402Version": 2,
  "id": 5304,
  "slug": "5304",
  "resource": "https://x402stock.xyz/api/v1/clinical-trials",
  "description": "Clinical trials run by a company, from ClinicalTrials.gov, newest first. Pass `?sponsor=Vertex Pharmaceuticals` (required) plus `?limit=` (max 100). Each trial carries NCT id, title, status, phase(s), study type, conditions, enrollment, lead sponsor, and start/completion/update dates with a link. A primary biotech catalyst. From x402stock, a market & economic data API (x402, USDC).",
  "type": "http",
  "accepts": [
    {
      "scheme": "exact",
      "network": "eip155:8453",
      "payTo": "0x3070Fbb3803819fB5BdfE9286fdc6325A877fA85",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "amount": "20000",
      "maxTimeoutSeconds": 300
    }
  ],
  "outputSchema": {
    "bazaar": {
      "info": {
        "input": {
          "method": "GET",
          "queryParams": {
            "limit": 20,
            "sponsor": "Vertex Pharmaceuticals"
          },
          "type": "http"
        },
        "output": {
          "example": {
            "as_of": "2026-06-18T12:00:00.000Z",
            "attribution": "Source: ClinicalTrials.gov, U.S. National Library of Medicine (NIH)",
            "count": 1,
            "source": "clinicaltrials_gov",
            "sponsor": "Vertex Pharmaceuticals",
            "total_matched": 285,
            "trials": [
              {
                "completion_date": "2027-03-31",
                "conditions": [
                  "Opioid Consumption, Postoperative",
                  "Ureteroscopy"
                ],
                "enrollment": 100,
                "last_update": "2026-06-17",
                "lead_sponsor": "Brigham and Women's Hospital",
                "nct_id": "NCT07654296",
                "phases": [
                  "PHASE3"
                ],
                "primary_completion_date": "2026-12-31",
                "sponsor_class": "OTHER",
                "start_date": "2026-08-01",
                "status": "NOT_YET_RECRUITING",
                "study_type": "INTERVENTIONAL",
                "title": "Assessing Suzetrigine for Pain Reduction Following Ureteroscopic Surgery",
                "url": "https://clinicaltrials.gov/study/NCT07654296"
              }
            ]
          },
          "type": "json"
        }
      },
      "schema": {
        "$schema": "https://json-schema.org/draft/2020-12/schema",
        "properties": {
          "input": {
            "additionalProperties": false,
            "properties": {
              "method": {
                "enum": [
                  "GET",
                  "HEAD",
                  "DELETE"
                ],
                "type": "string"
              },
              "queryParams": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": {},
                "properties": {
                  "limit": {
                    "default": 20,
                    "exclusiveMinimum": 0,
                    "maximum": 100,
                    "type": "integer"
                  },
                  "sponsor": {
                    "maxLength": 120,
                    "minLength": 2,
                    "type": "string"
                  }
                },
                "required": [
                  "limit"
                ],
                "type": "object"
              },
              "type": {
                "const": "http",
                "type": "string"
              }
            },
            "required": [
              "type",
              "method"
            ],
            "type": "object"
          },
          "output": {
            "properties": {
              "example": {
                "$schema": "https://json-schema.org/draft/2020-12/schema",
                "additionalProperties": false,
                "properties": {
                  "as_of": {
                    "type": "string"
                  },
                  "attribution": {
                    "type": "string"
                  },
                  "count": {
                    "type": "number"
                  },
                  "source": {
                    "const": "clinicaltrials_gov",
                    "type": "string"
                  },
                  "sponsor": {
                    "type": "string"
                  },
                  "total_matched": {
                    "type": "number"
                  },
                  "trials": {
                    "items": {
                      "additionalProperties": false,
                      "properties": {
                        "completion_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "conditions": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "enrollment": {
                          "anyOf": [
                            {
                              "type": "number"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "last_update": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "lead_sponsor": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "nct_id": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "phases": {
                          "items": {
                            "type": "string"
                          },
                          "type": "array"
                        },
                        "primary_completion_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "sponsor_class": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "start_date": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "status": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "study_type": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "title": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        },
                        "url": {
                          "anyOf": [
                            {
                              "type": "string"
                            },
                            {
                              "type": "null"
                            }
                          ]
                        }
                      },
                      "required": [
                        "nct_id",
                        "title",
                        "status",
                        "phases",
                        "study_type",
                        "conditions",
                        "enrollment",
                        "lead_sponsor",
                        "sponsor_class",
                        "start_date",
                        "primary_completion_date",
                        "completion_date",
                        "last_update",
                        "url"
                      ],
                      "type": "object"
                    },
                    "type": "array"
                  }
                },
                "required": [
                  "source",
                  "as_of",
                  "sponsor",
                  "total_matched",
                  "count",
                  "trials",
                  "attribution"
                ],
                "type": "object"
              },
              "type": {
                "type": "string"
              }
            },
            "required": [
              "type"
            ],
            "type": "object"
          }
        },
        "required": [
          "input"
        ],
        "type": "object"
      }
    }
  },
  "tags": [
    "bazaar"
  ],
  "sourceHost": "x402stock.xyz",
  "lastUpdated": "2026-09-14T18:58:05.684Z",
  "quality": {
    "calls30d": 1,
    "uniquePayers30d": 1,
    "lastCalledAt": "2026-09-14T18:58:05.404Z"
  },
  "liveness": {},
  "verified": false,
  "featured": false,
  "provider": {
    "host": "x402stock.xyz",
    "manifest_name": "x402stock.xyz",
    "source": "cdp-mirror",
    "source_manifest_url": "https://api.cdp.coinbase.com/platform/v2/x402/discovery/resources",
    "submitted_at": "2026-09-18T22:00:31.484Z"
  }
}