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

# Get Agency Details

> Returns the complete profile of the single agency linked to the authenticated workspace.



## OpenAPI

````yaml GET /v1/agency
openapi: 3.1.0
info:
  title: Getmany Service API
  description: This is the reference documentation and schemas for the Getmany Service API.
  version: 1.0.0
servers:
  - url: https://api.getmany.io/service
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Agency
    description: >-
      Agency information tied to the workspace, including agency profile
      details, seat-holders in an agency, and aggregated proposal performance
      stats
  - name: Job Searches
    description: Saved search configurations that scan the Upwork market
  - name: Jobs Feed
    description: >-
      Endpoints related to retrieving the jobs list matching with a job search
      configuration
  - name: Bid Intents
    description: List and manage bidding intents
  - name: Miscellaneous
    description: Various general purpose endpoints
  - name: Master Inbox
    description: Chat room management and messaging endpoints
paths:
  /v1/agency:
    get:
      tags:
        - Agency
      summary: Retrieve agency profile
      description: >-
        Returns the complete profile of the single agency linked to the
        authenticated workspace.
      operationId: getV1Agency
      parameters: []
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      uid:
                        type: string
                        description: Stable unique identifier of the agency.
                        example: 23b1f7fa-a3bc-41dd-9b89-301d8d9c8d50
                      name:
                        type: string
                        description: Public display name of the agency.
                        example: PixelPioneers Studio
                      description:
                        type: string
                        description: >-
                          Plain-text overview shown on the Upwork agency
                          profile.
                      timezone:
                        type: string
                        description: >-
                          IANA time-zone identifier of the agency’s primary
                          location (e.g. `Europe/Kyiv`).
                        example: Europe/Kyiv
                      connectsBalance:
                        type: number
                        description: >-
                          Remaining Connects tokens the agency can spend on
                          proposals.
                        example: 324
                    required:
                      - uid
                      - name
                      - description
                      - timezone
                      - connectsBalance
        '404':
          description: Agency not found
          content:
            application/problem+json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    format: uri
                  title:
                    type: string
                  status:
                    type: number
                  detail:
                    type: string
                  instance:
                    type: string
                    format: uri
                required:
                  - type
                  - title
                  - status
                  - detail
                  - instance
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````