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

# Get sender profile

> Returns message counts grouped by time interval and the policy disposition for the specified sender.



## OpenAPI

````yaml /outbound/api-reference/openapi.yaml post /senderprofile
openapi: 3.0.3
info:
  contact:
    email: support@mailchannels.com
    name: MailChannels Corporation
  description: >
    Search email delivery logs, retrieve sender profiles, and query alerts with
    the MailChannels Log Search API.


    ## Rate limits


    This API is limited to 100 queries per second, per customer.

    Queries that exceed this rate may be rejected with the `503 Service
    Temporarily Unavailable` HTTP response.
  title: Search Service
  version: 0.7.0
servers:
  - url: https://api.mailchannels.net/outbound/v1/
security:
  - X-API-KEY: []
paths:
  /senderprofile:
    post:
      summary: Get sender profile
      description: >-
        Returns message counts grouped by time interval and the policy
        disposition for the specified sender.
      parameters: []
      requestBody:
        content:
          application/json:
            schema:
              properties:
                end_date:
                  description: >-
                    The end of the date range, for example 2026-09-02T00:00:00.
                    Must be on or after start_date.
                  type: string
                interval:
                  description: >-
                    The time interval used to group message counts. Defaults to
                    days.
                  enum:
                    - days
                    - hours
                    - weeks
                  type: string
                senderid:
                  description: The sender ID to retrieve a profile for.
                  type: string
                start_date:
                  description: >-
                    The start of the date range, for example
                    2026-09-01T00:00:00. Must be on or before end_date.
                  type: string
                timezoneoffset:
                  default: '+0000'
                  description: Timezone offset.
                  type: string
              required:
                - senderid
                - start_date
                - end_date
              type: object
        description: The sender ID, date range, and time interval for the profile.
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                properties:
                  counts:
                    additionalProperties:
                      properties:
                        blocked:
                          type: integer
                        delivered:
                          type: integer
                        queued:
                          type: integer
                        rejected:
                          type: integer
                        sent:
                          type: integer
                      required:
                        - queued
                        - sent
                        - delivered
                        - blocked
                        - rejected
                      type: object
                    type: object
                  policyDisposition:
                    description: |
                      The policy disposition result for the provided sender ID.
                    type: string
                required:
                  - counts
                  - policyDisposition
                type: object
          description: Successful response.
        '400':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Bad Request.
        '500':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
          description: Internal Error.
components:
  schemas:
    ErrorResponse:
      properties:
        code:
          description: HTTP response code.
          type: integer
        errors:
          items:
            description: Response error.
            type: string
          type: array
        message:
          description: Response message.
          type: string
  securitySchemes:
    X-API-KEY:
      in: header
      name: X-API-KEY
      type: apiKey

````