Work with this as data
Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/99designs-coupons-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
OpenAPI Specification
openapi: 3.2.0
info:
title: 99designs Coupons API
description: 'The 99designs API lets platforms and partners embed a fully-managed creative marketplace: search and match designers, collect design briefs, place orders against 99designs products, and generate partner coupons. Authentication uses a pair of API key headers (Api-Key-Id and Api-Key-Secret) issued by 99designs after a partner requests access.'
version: v1
contact:
name: 99designs API
url: https://99designs.com/api
x-apis-json-source: https://api.99designs.com/resources/docs/
x-provenance:
generated: '2026-07-17'
method: searched
source: https://api.99designs.com/resources/docs/
servers:
- url: https://api.99designs.com/resources/v1
description: Production
security:
- ApiKeyId: []
ApiKeySecret: []
tags:
- name: Coupons
description: Generate partner coupon tokens.
paths:
/coupons:
post:
operationId: createCoupon
tags:
- Coupons
summary: Generate a partner coupon
description: Returns a signed partner coupon that can be passed back to 99designs via URL parameter, and a URL based on the campaign ID that can be used directly.
requestBody:
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/CouponRequest'
responses:
'200':
description: Generated coupon
content:
application/json:
schema:
$ref: '#/components/schemas/CouponCreated'
'400':
$ref: '#/components/responses/BadRequest'
components:
schemas:
CouponCreated:
type: object
properties:
jwt:
type: string
description: Signed partner coupon token.
url:
type: string
description: Brief-creation URL carrying the coupon as the pc query parameter.
couponId:
type: string
format: uuid
ErrorEnvelope:
type: object
properties:
errors:
type: array
items:
type: object
properties:
path:
type: string
message:
type: string
message:
type: string
CouponRequest:
type: object
properties:
aud:
type: string
description: Name of the campaign the token relates to. This will be provided by 99designs for your specific campaign.
sub:
type: string
description: Identify the user for which this token relates to. One or both of sub or jti are required.
jti:
type: string
description: Identify a specific token, unique per token. One or both of sub or jti are required.
exp:
type: integer
description: UNIX timestamp after which the coupon can no longer be used.
nbf:
type: integer
description: UNIX timestamp before which the coupon can not be used.
responses:
BadRequest:
description: Bad request
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorEnvelope'
securitySchemes:
ApiKeyId:
type: apiKey
in: header
name: Api-Key-Id
ApiKeySecret:
type: apiKey
in: header
name: Api-Key-Secret