> ## Documentation Index > Fetch the complete documentation index at: https://docs.graphiant.com/llms.txt > Use this file to discover all available pages before exploring further. # /v1/extranet/b2b/services/summary > List inter-enterprise extranet services ## OpenAPI ````json GET /v1/extranet/b2b/services/summary { "openapi": "3.0.0", "info": { "title": "Graphiant APIs", "version": "1.0.0", "description": "Graphiant API documentation." }, "servers": [ { "url": "https://api.graphiant.com" } ], "security": [ { "jwtAuth": [] } ], "tags": [], "paths": { "/v1/extranet/b2b/services/summary": { "get": { "security": [ { "jwtAuth": [] } ], "parameters": [ { "in": "header", "name": "Authorization", "required": true, "schema": { "type": "string" }, "description": "Bearer token. Format: Bearer " } ], "responses": { "200": { "description": "OK", "content": { "application/json": { "schema": { "$ref": "#/components/schemas/v1ExtranetB2bServicesSummaryGetResponse" } } } } }, "description": "List inter-enterprise extranet services" } } }, "components": { "schemas": { "v1ExtranetB2bServicesSummaryGetResponse": { "type": "object", "properties": { "services": { "type": "array", "items": { "$ref": "#/components/schemas/manaV2ExtranetServiceSummary" } } }, "additionalProperties": false }, "manaV2ExtranetServiceSummary": { "type": "object", "properties": { "createdAt": { "$ref": "#/components/schemas/googleProtobufTimestamp" }, "id": { "type": "integer", "format": "int64", "example": 1234567891011 }, "isPublisher": { "type": "boolean", "example": true, "description": "True when this enterprise publishes the service; false when consuming a remote producer" }, "lanSegment": { "type": "integer", "format": "int64", "example": 1234567891011, "description": "Service LAN segment when is_publisher and VRF exists" }, "lastUpdated": { "$ref": "#/components/schemas/googleProtobufTimestamp" }, "serverPrefixes": { "type": "array", "items": { "type": "string", "example": "example string", "description": "Producer prefix tags (legacy ServerIpAddress on publisher rows)" } }, "serviceName": { "type": "string", "example": "example string" }, "serviceType": { "type": "string", "example": "ENUM_VALUE" }, "sites": { "type": "array", "items": { "type": "integer", "format": "int64", "example": 1234567891011 } }, "status": { "type": "string", "example": "ENUM_VALUE" }, "totalCustomers": { "type": "integer", "format": "int32", "example": 123, "minimum": 0 } }, "additionalProperties": false }, "googleProtobufTimestamp": { "type": "object", "properties": { "nanos": { "type": "integer", "format": "int32", "example": 123 }, "seconds": { "type": "integer", "format": "int64", "example": 1234567891011 } }, "additionalProperties": false } }, "securitySchemes": { "jwtAuth": { "type": "apiKey", "in": "header", "name": "authorization", "description": "Use `Bearer `" } } } } ````