Hi Dustin N., thanks for checking in. Yeah, I was able to query on the GraphQL playground with the following query to get the required details based on the TraceID. I was also able to confirm the same using the API key:
query MyQuery {
projects {
edges {
node {
trace(traceId: "4117e78a41be37dadfafbb6359036123") {
traceId
projectId
spans {
edges {
node {
tokenCountTotal
latencyMs
endTime
startTime
statusCode
statusMessage
tokenCountPrompt
tokenCountCompletion
}
}
}
}
}
}
}
}
Thanks a lot for the help. Really appreciate it.