Reference

Registry Management

Edit this page

Registry Management

Manage your gateway registration, update information, and monitor discovery metrics.

Update Gateway Information

1curl -X PATCH https://registry.betterdata.co/api/gateways/gw_123 \
2 -H "Authorization: Bearer YOUR_API_KEY" \
3 -H "Content-Type: application/json" \
4 -d '{
5 "description": "Updated description",
6 "logo_url": "https://yourstore.com/new-logo.png",
7 "categories": ["beauty", "skincare"]
8 }'

View Registration Status

1curl -X GET https://registry.betterdata.co/api/gateways/gw_123 \
2 -H "Authorization: Bearer YOUR_API_KEY"

Response:

1{
2 "id": "gw_123",
3 "brand_name": "Your Brand",
4 "domain": "yourstore.com",
5 "endpoint": "https://gateway.betterdata.co/v1/your-gateway-id",
6 "verified": true,
7 "status": "active",
8 "discovery_count": 1250,
9 "last_discovered": "2024-01-15T14:30:00Z",
10 "created_at": "2024-01-10T10:00:00Z",
11 "updated_at": "2024-01-15T14:30:00Z"
12}

Discovery Analytics

View discovery metrics:

  • Total discovery queries
  • Queries by AI provider
  • Most searched products
  • Geographic distribution

Deactivate Registration

1curl -X POST https://registry.betterdata.co/api/gateways/gw_123/deactivate \
2 -H "Authorization: Bearer YOUR_API_KEY"