# GoCreative Deps Drift Endpoint

> GoCreative Deps Drift Endpoint is a paid API for AI agents from api.gocreativeai.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Retrieves dependency drift data for a given argument, surfacing compliance or regulated-data dependency changes via keyless pay-per-call API

## Facts

- Endpoint: GET https://api.gocreativeai.com/v1/deps/drift/%7Barg%7D
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gocreative-deps-drift-endpoint-a0fdbd9a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ce85RS_Hba0_UaUvzKd-6

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gocreative-deps-drift-endpoint-a0fdbd9a
```

Example prompt: Check the dependency drift status for identifier 'wallet-screening-ofac-v2' using the GoCreative compliance API and tell me if it has drifted from its expected baseline.

## When to prefer this

Use this endpoint when you need to check whether a specific compliance or regulated-data dependency has drifted from its expected configuration or baseline state, particularly in automated agent workflows that require keyless, pay-per-call access without API key registration.

## Known failure modes

- Missing required 'input' query parameter returns 400 error
- Invalid or unrecognized argument value returns empty or null drift data
- Payment failure (insufficient USDC balance) returns 402 Payment Required
- Network timeout or upstream service unavailability returns 503
- Malformed path parameter returns 422 or 404

## How this service works

Keyless, pay-per-call compliance &amp; regulated-data API for AI agents — OFAC wallet + sanctions/PEP + KYB screening, SEC filings, FRED economics, FDA recalls, federal awards, plus continuous monitoring. USDC on Base/Solana via x402, native MCP. No API key, no signup.

## Output

Returns dependency drift data for the specified argument, indicating whether the dependency has changed or drifted from its expected state, likely including drift status, version or configuration details, and any compliance-relevant flags.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "input"
     ],
     "properties": {
      "input": {
       "type": "string",
       "description": "endpoint argument"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gocreative-deps-drift-endpoint-a0fdbd9a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.gocreativeai.com](https://www.zero.xyz/host/api.gocreativeai.com/llms.txt)
