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

# /techcrunch/images

> Get a TechCrunch image by its media id: original file url and every rendition size, alt text, caption, photo credit and copyright holder, capture timestamp, camera and exposure settings, pixel dimensions, file size and the article it is attached to.

**Price:** 1 credit

**⚠️ Common errors:** 412: Image not found (well-formed but nonexistent media id)



## OpenAPI

````yaml /openapi/news-publishing.json post /api/techcrunch/images
openapi: 3.1.0
info:
  title: Any Site API
  description: >+
    Any Site API provides programmatic access to data from LinkedIn, Instagram,
    Twitter, and other platforms.


    ## Authentication


    All API endpoints require an `access-token` header with a valid API token.
    Tokens can be created in the [dashboard](https://app.anysite.io/).


    ## Pricing


    Each endpoint has a credit cost listed in its description. Credits are
    deducted from your token balance per request.

  version: 0.0.1
servers: []
security:
  - AccessToken: []
paths:
  /api/techcrunch/images:
    post:
      tags:
        - /techcrunch
      summary: /techcrunch/images
      description: >-
        Get a TechCrunch image by its media id: original file url and every
        rendition size, alt text, caption, photo credit and copyright holder,
        capture timestamp, camera and exposure settings, pixel dimensions, file
        size and the article it is attached to.


        **Price:** 1 credit


        **⚠️ Common errors:** 412: Image not found (well-formed but nonexistent
        media id)
      operationId: __api_techcrunch_images_post
      parameters:
        - name: access-token
          in: header
          required: true
          schema:
            anyOf:
              - type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TechcrunchImagesPayload'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TechcrunchImage'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    TechcrunchImagesPayload:
      properties:
        timeout:
          type: integer
          maximum: 1500
          minimum: 20
          default: 300
        image:
          type: integer
          exclusiveMinimum: 0
      type: object
      required:
        - image
    TechcrunchImage:
      properties:
        '@type':
          type: string
          default: TechcrunchImage
        id:
          type: integer
        image:
          type: string
        image_title:
          anyOf:
            - type: string
            - type: 'null'
        alias:
          anyOf:
            - type: string
            - type: 'null'
        web_url:
          anyOf:
            - type: string
            - type: 'null'
        alt:
          anyOf:
            - type: string
            - type: 'null'
        caption:
          anyOf:
            - type: string
            - type: 'null'
        credit:
          anyOf:
            - type: string
            - type: 'null'
        copyright:
          anyOf:
            - type: string
            - type: 'null'
        keywords:
          items:
            type: string
          type: array
          default: []
        camera:
          anyOf:
            - type: string
            - type: 'null'
        aperture:
          anyOf:
            - type: number
            - type: 'null'
        focal_length:
          anyOf:
            - type: number
            - type: 'null'
        iso:
          anyOf:
            - type: integer
            - type: 'null'
        shutter_speed:
          anyOf:
            - type: number
            - type: 'null'
        taken_at:
          anyOf:
            - type: integer
            - type: 'null'
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        file_size:
          anyOf:
            - type: integer
            - type: 'null'
        media_type:
          anyOf:
            - type: string
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
        uploaded_at:
          anyOf:
            - type: integer
            - type: 'null'
        updated_at:
          anyOf:
            - type: integer
            - type: 'null'
        post_id:
          anyOf:
            - type: integer
            - type: 'null'
        sizes:
          items:
            $ref: '#/components/schemas/TechcrunchImageSize'
          type: array
          default: []
      type: object
      required:
        - id
        - image
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
      type: object
    TechcrunchImageSize:
      properties:
        '@type':
          type: string
          default: TechcrunchImageSize
        name:
          type: string
        image:
          type: string
        width:
          anyOf:
            - type: integer
            - type: 'null'
        height:
          anyOf:
            - type: integer
            - type: 'null'
        mime_type:
          anyOf:
            - type: string
            - type: 'null'
      type: object
      required:
        - name
        - image
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
        msg:
          type: string
        type:
          type: string
        input: {}
        ctx:
          type: object
      type: object
      required:
        - loc
        - msg
        - type
  securitySchemes:
    AccessToken:
      type: apiKey
      in: header
      name: access-token
      description: API token from the dashboard

````