API ReferenceGuidesChangelog
Processors

Get the source files of a processor

GET
/v1/processors/{owner}/{slug}/source_files

Authorization

api-key<token>

In: header

Path Parameters

owner*string
slug*string

Query Parameters

version?integer

Optional version to fetch. If omitted, use latest active version.

Formatint32

Response Body

application/json

curl -X GET "https://example.com/v1/processors/string/string/source_files"
{  "sourceFiles": [    {      "content": "string",      "path": "string"    }  ]}