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

# Get browser profile usage

> List the workflows, credentials, and recent runs that depend on a browser profile.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/browser_profiles/{profile_id}/usage
openapi: 3.1.0
info:
  title: Skyvern API
  description: API for Skyvern
  version: 1.0.0
servers:
  - url: https://api.skyvern.com
    x-fern-server-name: Cloud
  - url: https://api-staging.skyvern.com
    x-fern-server-name: Staging
  - url: http://localhost:8000
    x-fern-server-name: Local
security: []
paths:
  /v1/browser_profiles/{profile_id}/usage:
    get:
      tags:
        - Browser Profiles
      summary: Get browser profile usage
      description: >-
        List the workflows, credentials, and recent runs that depend on a
        browser profile.
      operationId: get_browser_profile_usage_v1_browser_profiles__profile_id__usage_get
      parameters:
        - name: profile_id
          in: path
          required: true
          schema:
            type: string
            description: >-
              The ID of the browser profile. browser_profile_id starts with
              `bp_`
            examples:
              - bp_123456
            title: Profile Id
          description: The ID of the browser profile. browser_profile_id starts with `bp_`
        - name: x-api-key
          in: header
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: >-
              Skyvern API key for authentication. API key can be found at
              https://app.skyvern.com/settings.
            title: X-Api-Key
          description: >-
            Skyvern API key for authentication. API key can be found at
            https://app.skyvern.com/settings.
      responses:
        '200':
          description: Successfully retrieved browser profile usage
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/BrowserProfileUsage'
        '404':
          description: Browser profile not found
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    BrowserProfileUsage:
      properties:
        workflows:
          items:
            $ref: '#/components/schemas/BrowserProfileUsageWorkflow'
          type: array
          title: Workflows
          default: []
        credentials:
          items:
            $ref: '#/components/schemas/BrowserProfileUsageCredential'
          type: array
          title: Credentials
          default: []
        recent_seeded_run_count:
          type: integer
          title: Recent Seeded Run Count
          default: 0
      type: object
      title: BrowserProfileUsage
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    BrowserProfileUsageWorkflow:
      properties:
        workflow_permanent_id:
          type: string
          title: Workflow Permanent Id
        title:
          type: string
          title: Title
        via:
          type: string
          title: Via
      type: object
      required:
        - workflow_permanent_id
        - title
        - via
      title: BrowserProfileUsageWorkflow
    BrowserProfileUsageCredential:
      properties:
        credential_id:
          type: string
          title: Credential Id
        name:
          type: string
          title: Name
      type: object
      required:
        - credential_id
        - name
      title: BrowserProfileUsageCredential
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
        input:
          title: Input
        ctx:
          type: object
          title: Context
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````