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

# List connected profiles

> Return every social profile connected to the authenticated Nylon account.



## OpenAPI

````yaml /openapi.yaml get /v1/profiles
openapi: 3.1.0
info:
  title: Nylon API
  version: 1.0.0
  description: |
    A unified API for accessing social profiles connected through Nylon.
servers:
  - url: https://api.nylon.dev
    description: Production
security:
  - bearerAuth: []
tags:
  - name: Profiles
    description: Social profiles connected to the authenticated Nylon account.
paths:
  /v1/profiles:
    get:
      tags:
        - Profiles
      summary: List connected profiles
      description: >-
        Returns all social profiles connected to the authenticated Nylon
        account.
      operationId: listProfiles
      responses:
        '200':
          description: Connected profiles were returned successfully.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProfileListResponse'
              examples:
                success:
                  value:
                    data:
                      - id: profile_01k4nylon
                        network: instagram
                        name: Nylon Studio
                        username: nylonstudio
                        avatarUrl: https://cdn.example.com/avatar.jpg
                        status: active
                        connectedAt: '2026-05-14T10:20:00.000Z'
        '401':
          description: The bearer API key is missing or invalid.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '429':
          description: The request rate limit was exceeded.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Nylon encountered an unexpected error.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - bearerAuth: []
components:
  schemas:
    ProfileListResponse:
      type: object
      required:
        - data
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/Profile'
    ErrorResponse:
      type: object
      required:
        - error
      properties:
        error:
          $ref: '#/components/schemas/Error'
    Profile:
      type: object
      required:
        - id
        - network
        - name
        - status
        - connectedAt
      properties:
        id:
          type: string
          description: Stable Nylon identifier for the connected profile.
          example: profile_01k4nylon
        network:
          type: string
          description: Social network providing the profile.
          enum:
            - instagram
            - facebook
            - linkedin
            - tiktok
            - youtube
            - x
          example: instagram
        name:
          type: string
          description: Display name of the connected profile.
          example: Nylon Studio
        username:
          type:
            - string
            - 'null'
          description: Network username without a leading @, when available.
          example: nylonstudio
        avatarUrl:
          type:
            - string
            - 'null'
          format: uri
          description: Profile image URL, when available.
          example: https://cdn.example.com/avatar.jpg
        status:
          type: string
          description: Current health of the connection.
          enum:
            - active
            - reconnect_required
          example: active
        connectedAt:
          type: string
          format: date-time
          description: Time at which the profile was connected to Nylon.
          example: '2026-05-14T10:20:00.000Z'
    Error:
      type: object
      required:
        - code
        - message
      properties:
        code:
          type: string
          example: unauthorized
        message:
          type: string
          example: A valid Nylon API key is required.
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: Nylon API key
      description: An API key beginning with `nylon_live_`.

````