Claude Platform Docs

메시지 배치 결과 조회

$client->messages->batches->results(string messageBatchID, ?string workspaceID): MessageBatchIndividualResponse
GET/v1/messages/batches/{message_batch_id}/results

메시지 배치의 결과를 .jsonl 파일로 스트리밍합니다.

파일의 각 줄은 메시지 배치 내 단일 요청의 결과를 포함하는 JSON 객체입니다. 결과가 요청과 동일한 순서로 제공된다는 보장은 없습니다. 결과를 요청과 매칭하려면 custom_id 필드를 사용하세요.

Message Batches API에 대한 자세한 내용은 사용자 가이드를 참조하세요.

Parameters
messageBatchID: string

ID of the Message Batch.

workspaceID?:optional string
Returns
class MessageBatchIndividualResponse { $customID; $result; }
string customID

Developer-provided ID created for each request in a Message Batch. Useful for matching results to requests, as results may be given out of request order.

Must be unique for each request within the Message Batch.

Processing result for this request.

Contains a Message output if processing was successful, an error response if processing failed, or the reason why processing was not attempted, such as cancellation or expiration.

메시지 배치 결과 조회
<?php

require_once dirname(__DIR__) . '/vendor/autoload.php';

$client = new Client(apiKey: 'my-anthropic-api-key');

$messageBatchIndividualResponse = $client->messages->batches->resultsStream(
  'message_batch_id', workspaceID: 'wrkspc_011CZkZaBF1tNoB5wlCeusgy'
);

var_dump($messageBatchIndividualResponse);