[Home](./index) > [valkyrie-js](./valkyrie-js) > [api](./valkyrie-js.api) > [FetchLike](./valkyrie-js.api.fetchlike) ## api.FetchLike type **Signature:** ```typescript export declare type FetchLike = ( input: string, init?: { method?: string; body?: string; credentials?: RequestCredentials; cache?: RequestCache; }, ) => Promise<{ status: number; json(): Promise; }>; ```