ProfileClaw
ResumeOpportunity WorkspacePricing
ProfileClaw
ProfileClawCareer Graph OS
ProfileClaw Data Layer

Build once. Keep your context alive everywhere.

ProfileClaw keeps your assessments, materials, and long-term context ready for products like OpenClaw, Claude Work, and Nanobot, so AI can work with memory instead of starting cold.

© 2026 ProfileClaw. All rights reserved.

沪ICP备2026012738号

【工业和信息化部】尊敬的用户路承龙,您的ICP备案申请已通过审核,备案/许可证编号为:沪ICP备2026012738号,审核通过日期:2026-04-09。特此通知!【工信部ICP备案】

Product

  • Home
  • Assessments
  • Reports
  • Resume
  • Opportunity Workspace
  • Pricing
  • About

Assessments

  • Assessments
  • RIASEC
  • Work Style
  • Values
  • Skills & Talents
  • Collaboration & Conflict
  • Stress & Regulation
  • Expression Style
  • Current State Pulse

Developers

  • Developer Center
  • Docs
  • Quickstart
  • API Reference
  • Agents
  • Integrations

My

  • My
  • Reports
  • Opportunity Workspace
  • Job Preferences
  • Resume
  • Purchases & Credits
  • API Keys
  • Auth
Open QuickstartOpen the quickstart to see how ProfileClaw data connects to docs, APIs, and agent workflows.
Get StartedCreate your account, start the assessments, and build a capability profile AI can keep using.
All systems operational
HomePricingDocsPrivacyTerms
HomeAssessmentsReportsMy
ProfileClaw Docs
Home
Pricing
API OverviewAuthenticationContext APIProfile APIAssessments APICareer Graph APIAlerts APICareer Context APICareer Health APICareer Match APICareer Prediction APICareer Reasoning APIData Sharing APIError TypesSimilar Paths APIWebhooksErrors
DocsAPIWebhooks

API guide

Webhooks

Webhooks covers subscription creation, signature verification, and event-driven sync patterns.

Path: /api/v1/webhooks
Format: AI-first docs
Info

Contract-backed page

This page is generated from the current OpenAPI contract summary so docs stay aligned with the formal API surface.

GET /api/v1/webhooks

List webhook subscriptions

Required scopes

  • read:webhooks

Request

  • no extra request parameters

Responses

  • 200: OK
  • 401:
  • 403:
  • 429:
  • 500:

Errors

  • none documented

Examples

Code sample (curl)
1curl "https://profileclaw.cn/api/v1/webhooks" -H "Authorization: Bearer $PROFILECLAW_API_KEY"

POST /api/v1/webhooks

Create a webhook subscription

Webhook deliveries include headers X-Webhook-Event, X-Webhook-Delivery, and X-Webhook-Signature (HMAC-SHA256 hex of the raw JSON body using your subscription secret).

Required scopes

  • write:webhooks

Request

  • request body available

Responses

  • 201: Created
  • 400: Bad request
  • 401:
  • 403:
  • 429:
  • 500:

Errors

  • webhooks.missing_required_fields
  • webhooks.invalid_url
  • webhooks.invalid_events

Examples

Code sample (curl)
1curl "https://profileclaw.cn/api/v1/webhooks" -H "Authorization: Bearer $PROFILECLAW_API_KEY" -H "Content-Type: application/json" -d '{"url":"https://example.com/profileclaw/webhook","events":["assessment.completed","profile.updated"]}'

DELETE /api/v1/webhooks

Delete a webhook subscription

Required scopes

  • write:webhooks

Request

  • id (query): Subscription ID

Responses

  • 200: OK
  • 400: Bad request
  • 401:
  • 403:
  • 404:
  • 429:
  • 500:

Errors

  • webhooks.missing_subscription_id

Examples

Code sample (curl)
1curl -X DELETE "https://profileclaw.cn/api/v1/webhooks?id=sub_123" -H "Authorization: Bearer $PROFILECLAW_API_KEY"

Related surfaces

Use these surfaces when you need deeper inspection or automation.

Open Reference
Open OpenAPI