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

# Get Attestations by Task ID

> Returns all EAS attestation UIDs linked to a given task, with easscan deep links.



## OpenAPI

````yaml GET /api/v1/attestations/{taskId}
openapi: 3.0.0
info:
  title: AgentChain & PRIOR API
  description: The centralized gateway for the decentralized compute network.
  version: '1.0'
  contact: {}
servers:
  - url: https://api.agentchain.xyz
    description: Production
security: []
tags: []
paths:
  /api/v1/attestations/{taskId}:
    get:
      operationId: AttestationController_getByTaskId
      parameters:
        - name: taskId
          required: true
          in: path
          schema:
            type: string
      responses:
        '200':
          description: ''

````