> ## Documentation Index
> Fetch the complete documentation index at: https://documentation.byteful.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Retrieve Mobile Service Summary

> This endpoint provides a detailed summary of a mobile service.
It returns information such as service details, usage statistics, and associated proxy users.




## OpenAPI

````yaml get /public/user/mobile/summary
openapi: 3.0.1
info:
  title: Byteful Public User API
  description: Public API used for third-party usage.
  termsOfService: https://byteful.com
  contact:
    url: https://byteful.com
    email: developer@byteful.com
  version: '1.0'
  x-logo:
    altText: Byteful
    backgroundColor: '#6354eb'
    url: >-
      https://pbs.twimg.com/profile_banners/1038803520605118464/1729783007/1500x500
servers:
  - url: https://api.byteful.com/1.0/
security: []
paths:
  /public/user/mobile/summary:
    get:
      tags:
        - Mobile
      summary: Retrieve Mobile Service Summary
      description: >
        This endpoint provides a detailed summary of a mobile service.

        It returns information such as service details, usage statistics, and
        associated proxy users.
      responses:
        '200':
          description: Successful retrieval of mobile service summary.
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      mobile_bytes:
                        type: integer
                        example: 10024144
                      mobile_bytes_left:
                        type: integer
                        example: 7003114
                      mobile_bytes_used:
                        type: integer
                        example: 3021030
                      mobile_requests:
                        type: integer
                        example: 5012
                      proxy_user_ids:
                        type: array
                        items:
                          type: string
                          example: stevejobs
                  message:
                    type: string
                    example: Mobile summary successfully generated.
      security:
        - APIPrivateKey: []
          APIPublicKey: []
components:
  securitySchemes:
    APIPrivateKey:
      type: apiKey
      description: ' Private API key for user-level authentication.'
      name: X-API-Private-Key
      in: header
    APIPublicKey:
      type: apiKey
      description: ' Public API key for user-level authentication.'
      name: X-API-Public-Key
      in: header

````