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

# Get Assets

> Get the organization assets, one row per (asset, organization) pair.

An asset's category can belong to multiple organizations; one asset row is
emitted per owning org so no association is silently dropped.



## OpenAPI

````yaml https://app.stainless.com/api/spec/documented/profound/openapi.documented.yml get /v1/org/assets
openapi: 3.1.0
info:
  title: External API
  version: fefde906c5e23fe9aa4945d75fabeb7896899c33
servers:
  - url: https://api.tryprofound.com
    description: Production Server
security: []
paths:
  /v1/org/assets:
    get:
      tags:
        - Organization
      summary: Get Assets
      description: >-
        Get the organization assets, one row per (asset, organization) pair.


        An asset's category can belong to multiple organizations; one asset row
        is

        emitted per owning org so no association is silently dropped.
      operationId: get_assets_v1_org_assets_get
      parameters:
        - name: organization_ids
          in: query
          required: false
          schema:
            anyOf:
              - items:
                  type: string
                  format: uuid
                type: array
              - type: 'null'
            description: >-
              Restrict results to one or more organizations the caller belongs
              to. Repeat the parameter to target multiple orgs (e.g.
              `?organization_ids=<id1>&organization_ids=<id2>`). Omit to return
              data from every organization the caller has access to.
            title: Organization Ids
          description: >-
            Restrict results to one or more organizations the caller belongs to.
            Repeat the parameter to target multiple orgs (e.g.
            `?organization_ids=<id1>&organization_ids=<id2>`). Omit to return
            data from every organization the caller has access to.
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizationAssetsResponse'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
      security:
        - APIKeyHeader: []
        - BearerAuth: []
      x-codeSamples:
        - lang: JavaScript
          source: |-
            import Profound from '@profoundai/client';

            const client = new Profound({
              apiKey: process.env['PROFOUND_API_KEY'], // This is the default and can be omitted
            });

            const response = await client.organizations.listAssets();

            console.log(response.data);
        - lang: Python
          source: |-
            import os
            from profound import Profound

            client = Profound(
                api_key=os.environ.get("PROFOUND_API_KEY"),  # This is the default and can be omitted
            )
            response = client.organizations.list_assets()
            print(response.data)
components:
  schemas:
    OrganizationAssetsResponse:
      properties:
        data:
          items:
            $ref: '#/components/schemas/CategoryAssetWithCategory'
          type: array
          title: Data
      type: object
      required:
        - data
      title: OrganizationAssetsResponse
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    CategoryAssetWithCategory:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
        website:
          type: string
          title: Website
        alternate_domains:
          anyOf:
            - items:
                type: string
              type: array
            - type: 'null'
          title: Alternate Domains
        is_owned:
          type: boolean
          title: Is Owned
        created_at:
          type: string
          format: date-time
          title: Created At
        logo_url:
          type: string
          title: Logo Url
        category:
          $ref: '#/components/schemas/Category'
        organization:
          $ref: '#/components/schemas/Organization'
      type: object
      required:
        - id
        - name
        - website
        - is_owned
        - created_at
        - logo_url
        - category
        - organization
      title: CategoryAssetWithCategory
    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
    Category:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          type: string
          title: Name
      type: object
      required:
        - id
        - name
      title: Category
    Organization:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        name:
          anyOf:
            - type: string
            - type: 'null'
          title: Name
      type: object
      required:
        - id
        - name
      title: Organization
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: X-API-Key
    BearerAuth:
      type: http
      scheme: bearer

````